From ca0e73233129442b36c8787095e3d276605b616f Mon Sep 17 00:00:00 2001 From: Ranjib Dey Date: Mon, 5 Oct 2015 13:27:51 -0700 Subject: [PATCH] fix toml struct string --- plugins/procstat/procstat.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/procstat/procstat.go b/plugins/procstat/procstat.go index 2a0dda09c..28a221bf5 100644 --- a/plugins/procstat/procstat.go +++ b/plugins/procstat/procstat.go @@ -12,7 +12,7 @@ import ( ) type Specification struct { - PidFile string + PidFile string `toml:"pid_file"` Exe string Prefix string }