diff --git a/runner/runner.go b/runner/runner.go index 8265013..9c15989 100644 --- a/runner/runner.go +++ b/runner/runner.go @@ -120,6 +120,6 @@ func (r *Runner) runPlugin(cp plugin.Plugin) (scrape.Statistic, error) { if err != nil { return scrape.Statistic{}, err } - r.StorageRepository.Save(fmt.Sprintf("atom_%s", cp.String()), json) + r.StorageRepository.Save(fmt.Sprintf("json_%s", cp.String()), json) return scrape.Statistic{Items: len(f.Items)}, nil }