Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
colixxxx committed Sep 29, 2023
1 parent 3a724ba commit 9c77c46
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions plugins/aggregators/basicstats/basicstats.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ var sampleConfig string

type BasicStats struct {
Stats []string `toml:"stats"`
CountSuffix string `toml:"count_suffix"`
MinSuffix string `toml:"min_suffix"`
MaxSuffix string `toml:"max_suffix"`
MeanSuffix string `toml:"mean_suffix"`
SumSuffix string `toml:"sum_suffix"`
CountSuffix string `toml:"count_suffix" default:""`
MinSuffix string `toml:"min_suffix" default:""`
MaxSuffix string `toml:"max_suffix" default:""`
MeanSuffix string `toml:"mean_suffix" default:""`
SumSuffix string `toml:"sum_suffix" default:""`
Log telegraf.Logger

cache map[uint64]aggregate
Expand Down

0 comments on commit 9c77c46

Please sign in to comment.