Only run the cpu plugin twice when using -test

This can be easily extended to other plugins that need it by tacking
their name onto the switch statement. Also eliminating the unused
TestAllPlugins code and cleaning up some stray Printlns
This commit is contained in:
Cameron Sparr 2015-09-23 13:54:22 -07:00
parent b12b804f0a
commit aad6a7e262
3 changed files with 16 additions and 45 deletions

View File

@ -1,6 +1,7 @@
## v0.1.10 [unreleased] ## v0.1.10 [unreleased]
### Release Notes ### Release Notes
- The -test flag will now only output 2 collections for plugins that need it
### Features ### Features
- [#205](https://github.com/influxdb/telegraf/issues/205): Include per-db redis keyspace info - [#205](https://github.com/influxdb/telegraf/issues/205): Include per-db redis keyspace info

View File

@ -116,14 +116,15 @@ func (a *Agent) LoadOutputs(filters []string) ([]string, error) {
var names []string var names []string
for _, name := range a.Config.OutputsDeclared() { for _, name := range a.Config.OutputsDeclared() {
fmt.Println(outputs.Outputs)
creator, ok := outputs.Outputs[name] creator, ok := outputs.Outputs[name]
if !ok { if !ok {
return nil, fmt.Errorf("Undefined but requested output: %s", name) return nil, fmt.Errorf("Undefined but requested output: %s", name)
} }
if sliceContains(name, filters) || len(filters) == 0 { if sliceContains(name, filters) || len(filters) == 0 {
fmt.Println("OUTPUT ENABLED: ", name) if a.Debug {
log.Println("Output Enabled: ", name)
}
output := creator() output := creator()
err := a.Config.ApplyOutput(name, output) err := a.Config.ApplyOutput(name, output)
@ -306,36 +307,6 @@ func (a *Agent) flush(bp *BatchPoints) error {
return outerr return outerr
} }
// TestAllPlugins verifies that we can 'Gather' from all plugins with the
// default configuration
func (a *Agent) TestAllPlugins() error {
var names []string
for name := range plugins.Plugins {
names = append(names, name)
}
sort.Strings(names)
var acc BatchPoints
acc.Debug = true
fmt.Printf("* Testing all plugins with default configuration\n")
for _, name := range names {
plugin := plugins.Plugins[name]()
fmt.Printf("* Plugin: %s\n", name)
acc.Prefix = name + "_"
if err := plugin.Gather(&acc); err != nil {
return err
}
}
return nil
}
// Test verifies that we can 'Gather' from all plugins with their configured // Test verifies that we can 'Gather' from all plugins with their configured
// Config struct // Config struct
func (a *Agent) Test() error { func (a *Agent) Test() error {
@ -347,7 +318,7 @@ func (a *Agent) Test() error {
acc.Prefix = plugin.name + "_" acc.Prefix = plugin.name + "_"
acc.Config = plugin.config acc.Config = plugin.config
fmt.Printf("* Plugin: %s Collection 1\n", plugin.name) fmt.Printf("* Plugin: %s, Collection 1\n", plugin.name)
if plugin.config.Interval != 0 { if plugin.config.Interval != 0 {
fmt.Printf("* Internal: %s\n", plugin.config.Interval) fmt.Printf("* Internal: %s\n", plugin.config.Interval)
} }
@ -356,13 +327,18 @@ func (a *Agent) Test() error {
return err return err
} }
time.Sleep(500 * time.Millisecond) // Special instructions for some plugins. cpu, for example, needs to be
fmt.Printf("* Plugin: %s Collection 2\n", plugin.name) // run twice in order to return cpu usage percentages.
if err := plugin.plugin.Gather(&acc); err != nil { switch plugin.name {
return err case "cpu":
time.Sleep(500 * time.Millisecond)
fmt.Printf("* Plugin: %s, Collection 2\n", plugin.name)
if err := plugin.plugin.Gather(&acc); err != nil {
return err
}
} }
}
}
return nil return nil
} }

View File

@ -109,16 +109,10 @@ func main() {
} }
if *fTest { if *fTest {
if *fConfig != "" { err = ag.Test()
err = ag.Test()
} else {
err = ag.TestAllPlugins()
}
if err != nil { if err != nil {
log.Fatal(err) log.Fatal(err)
} }
return return
} }