Added Questions status variable to mysql input

This commit is contained in:
Pierre Tessier 2016-11-04 10:02:09 -04:00
parent a9d953de31
commit faf63472ea
1 changed files with 7 additions and 0 deletions

View File

@ -828,6 +828,13 @@ func (m *Mysql) gatherGlobalStatuses(db *sql.DB, serv string, acc telegraf.Accum
}
fields["queries"] = i
case "Questions":
i, err := strconv.ParseInt(string(val.([]byte)), 10, 64)
if err != nil {
return err
}
fields["questions"] = i
case "Slow_queries":
i, err := strconv.ParseInt(string(val.([]byte)), 10, 64)
if err != nil {