Implement transport stats.

This commit is contained in:
Orne Brocaar
2015-07-09 20:36:22 +02:00
parent ec4079733e
commit cb839d0fe8
3 changed files with 23 additions and 0 deletions

View File

@@ -22,6 +22,7 @@ type node struct {
ThreadPool interface{} `json:"thread_pool"`
Network interface{} `json:"network"`
FS interface{} `json:"fs"`
Transport interface{} `json:"transport"`
}
const sampleConfig = `
@@ -123,6 +124,9 @@ func (e *Elasticsearch) gatherUrl(url string, acc plugins.Accumulator) error {
if err := e.parseInterface(acc, "fs", tags, n.FS); err != nil {
return err
}
if err := e.parseInterface(acc, "transport", tags, n.Transport); err != nil {
return err
}
}
return nil