Remove print call in cassandra plugin (#2192)
This commit is contained in:
parent
e16072876d
commit
fb225d69f8
|
@ -289,7 +289,6 @@ func (c *Cassandra) Gather(acc telegraf.Accumulator) error {
|
||||||
requestUrl.User = url.UserPassword(serverTokens["user"],
|
requestUrl.User = url.UserPassword(serverTokens["user"],
|
||||||
serverTokens["passwd"])
|
serverTokens["passwd"])
|
||||||
}
|
}
|
||||||
fmt.Printf("host %s url %s\n", serverTokens["host"], requestUrl)
|
|
||||||
|
|
||||||
out, err := c.getAttr(requestUrl)
|
out, err := c.getAttr(requestUrl)
|
||||||
if out["status"] != 200.0 {
|
if out["status"] != 200.0 {
|
||||||
|
|
Loading…
Reference in New Issue