changed types to decrease needless uint64 to float64 casts
This commit is contained in:
parent
cf6666b6f0
commit
9f36e194f4
|
@ -16,9 +16,9 @@ import (
|
||||||
|
|
||||||
type Mysql struct {
|
type Mysql struct {
|
||||||
Servers []string `toml:"servers"`
|
Servers []string `toml:"servers"`
|
||||||
PerfEventsStatementsDigestTextLimit uint32 `toml:"perf_events_statements_digest_text_limit"`
|
PerfEventsStatementsDigestTextLimit int64 `toml:"perf_events_statements_digest_text_limit"`
|
||||||
PerfEventsStatementsLimit uint32 `toml:"perf_events_statements_limit"`
|
PerfEventsStatementsLimit int64 `toml:"perf_events_statements_limit"`
|
||||||
PerfEventsStatementsTimeLimit uint32 `toml:"perf_events_statemetns_time_limit"`
|
PerfEventsStatementsTimeLimit int64 `toml:"perf_events_statemetns_time_limit"`
|
||||||
TableSchemaDatabases []string `toml:"table_schema_databases"`
|
TableSchemaDatabases []string `toml:"table_schema_databases"`
|
||||||
GatherProcessList bool `toml:"gather_process_list"`
|
GatherProcessList bool `toml:"gather_process_list"`
|
||||||
GatherInfoSchemaAutoInc bool `toml:"gather_info_schema_auto_inc"`
|
GatherInfoSchemaAutoInc bool `toml:"gather_info_schema_auto_inc"`
|
||||||
|
@ -983,8 +983,8 @@ func (m *Mysql) gatherPerfIndexIOWaits(db *sql.DB, serv string, acc telegraf.Acc
|
||||||
|
|
||||||
var (
|
var (
|
||||||
objSchema, objName, indexName, servtag string
|
objSchema, objName, indexName, servtag string
|
||||||
countFetch, countInsert, countUpdate, countDelete uint64
|
countFetch, countInsert, countUpdate, countDelete float64
|
||||||
timeFetch, timeInsert, timeUpdate, timeDelete uint64
|
timeFetch, timeInsert, timeUpdate, timeDelete float64
|
||||||
)
|
)
|
||||||
|
|
||||||
servtag, err = parseDSN(serv)
|
servtag, err = parseDSN(serv)
|
||||||
|
@ -1008,19 +1008,20 @@ func (m *Mysql) gatherPerfIndexIOWaits(db *sql.DB, serv string, acc telegraf.Acc
|
||||||
"name": objName,
|
"name": objName,
|
||||||
"index": indexName,
|
"index": indexName,
|
||||||
}
|
}
|
||||||
fields := make(map[string]interface{})
|
fields := map[string]interface{}{
|
||||||
fields["index_io_waits_total_fetch"] = float64(countFetch)
|
"index_io_waits_total_fetch": countFetch,
|
||||||
fields["index_io_waits_seconds_total_fetch"] = float64(timeFetch) / picoSeconds
|
"index_io_waits_seconds_total_fetch": timeFetch / picoSeconds,
|
||||||
|
}
|
||||||
|
|
||||||
// update write columns only when index is NONE
|
// update write columns only when index is NONE
|
||||||
if indexName == "NONE" {
|
if indexName == "NONE" {
|
||||||
fields["index_io_waits_total_insert"] = float64(countInsert)
|
fields["index_io_waits_total_insert"] = countInsert
|
||||||
fields["index_io_waits_total_update"] = float64(countUpdate)
|
fields["index_io_waits_total_update"] = countUpdate
|
||||||
fields["index_io_waits_total_delete"] = float64(countDelete)
|
fields["index_io_waits_total_delete"] = countDelete
|
||||||
|
|
||||||
fields["index_io_waits_seconds_total_insert"] = float64(timeInsert) / picoSeconds
|
fields["index_io_waits_seconds_total_insert"] = timeInsert / picoSeconds
|
||||||
fields["index_io_waits_seconds_total_update"] = float64(timeUpdate) / picoSeconds
|
fields["index_io_waits_seconds_total_update"] = timeUpdate / picoSeconds
|
||||||
fields["index_io_waits_seconds_total_delete"] = float64(timeDelete) / picoSeconds
|
fields["index_io_waits_seconds_total_delete"] = timeDelete / picoSeconds
|
||||||
}
|
}
|
||||||
|
|
||||||
acc.AddFields("mysql_perf_schema", fields, tags)
|
acc.AddFields("mysql_perf_schema", fields, tags)
|
||||||
|
@ -1096,28 +1097,28 @@ func (m *Mysql) gatherPerfTableLockWaits(db *sql.DB, serv string, acc telegraf.A
|
||||||
var (
|
var (
|
||||||
objectSchema string
|
objectSchema string
|
||||||
objectName string
|
objectName string
|
||||||
countReadNormal uint64
|
countReadNormal float64
|
||||||
countReadWithSharedLocks uint64
|
countReadWithSharedLocks float64
|
||||||
countReadHighPriority uint64
|
countReadHighPriority float64
|
||||||
countReadNoInsert uint64
|
countReadNoInsert float64
|
||||||
countReadExternal uint64
|
countReadExternal float64
|
||||||
countWriteAllowWrite uint64
|
countWriteAllowWrite float64
|
||||||
countWriteConcurrentInsert uint64
|
countWriteConcurrentInsert float64
|
||||||
countWriteDelayed uint64
|
countWriteDelayed float64
|
||||||
countWriteLowPriority uint64
|
countWriteLowPriority float64
|
||||||
countWriteNormal uint64
|
countWriteNormal float64
|
||||||
countWriteExternal uint64
|
countWriteExternal float64
|
||||||
timeReadNormal uint64
|
timeReadNormal float64
|
||||||
timeReadWithSharedLocks uint64
|
timeReadWithSharedLocks float64
|
||||||
timeReadHighPriority uint64
|
timeReadHighPriority float64
|
||||||
timeReadNoInsert uint64
|
timeReadNoInsert float64
|
||||||
timeReadExternal uint64
|
timeReadExternal float64
|
||||||
timeWriteAllowWrite uint64
|
timeWriteAllowWrite float64
|
||||||
timeWriteConcurrentInsert uint64
|
timeWriteConcurrentInsert float64
|
||||||
timeWriteDelayed uint64
|
timeWriteDelayed float64
|
||||||
timeWriteLowPriority uint64
|
timeWriteLowPriority float64
|
||||||
timeWriteNormal uint64
|
timeWriteNormal float64
|
||||||
timeWriteExternal uint64
|
timeWriteExternal float64
|
||||||
)
|
)
|
||||||
|
|
||||||
for rows.Next() {
|
for rows.Next() {
|
||||||
|
@ -1159,97 +1160,97 @@ func (m *Mysql) gatherPerfTableLockWaits(db *sql.DB, serv string, acc telegraf.A
|
||||||
fields := make(map[string]interface{})
|
fields := make(map[string]interface{})
|
||||||
|
|
||||||
tags["operation"] = "read_normal"
|
tags["operation"] = "read_normal"
|
||||||
fields["sql_lock_waits_total"] = float64(countReadNormal)
|
fields["sql_lock_waits_total"] = countReadNormal
|
||||||
acc.AddFields("mysql_perf_schema", fields, tags)
|
acc.AddFields("mysql_perf_schema", fields, tags)
|
||||||
|
|
||||||
tags["operation"] = "read_with_shared_locks"
|
tags["operation"] = "read_with_shared_locks"
|
||||||
fields["sql_lock_waits_total"] = float64(countReadWithSharedLocks)
|
fields["sql_lock_waits_total"] = countReadWithSharedLocks
|
||||||
acc.AddFields("mysql_perf_schema", fields, tags)
|
acc.AddFields("mysql_perf_schema", fields, tags)
|
||||||
|
|
||||||
tags["operation"] = "read_high_priority"
|
tags["operation"] = "read_high_priority"
|
||||||
fields["sql_lock_waits_total"] = float64(countReadHighPriority)
|
fields["sql_lock_waits_total"] = countReadHighPriority
|
||||||
acc.AddFields("mysql_perf_schema", fields, tags)
|
acc.AddFields("mysql_perf_schema", fields, tags)
|
||||||
|
|
||||||
tags["operation"] = "read_no_insert"
|
tags["operation"] = "read_no_insert"
|
||||||
fields["sql_lock_waits_total"] = float64(countReadNoInsert)
|
fields["sql_lock_waits_total"] = countReadNoInsert
|
||||||
acc.AddFields("mysql_perf_schema", fields, tags)
|
acc.AddFields("mysql_perf_schema", fields, tags)
|
||||||
|
|
||||||
tags["operation"] = "write_normal"
|
tags["operation"] = "write_normal"
|
||||||
fields["sql_lock_waits_total"] = float64(countWriteNormal)
|
fields["sql_lock_waits_total"] = countWriteNormal
|
||||||
acc.AddFields("mysql_perf_schema", fields, tags)
|
acc.AddFields("mysql_perf_schema", fields, tags)
|
||||||
|
|
||||||
tags["operation"] = "write_allow_write"
|
tags["operation"] = "write_allow_write"
|
||||||
fields["sql_lock_waits_total"] = float64(countWriteAllowWrite)
|
fields["sql_lock_waits_total"] = countWriteAllowWrite
|
||||||
acc.AddFields("mysql_perf_schema", fields, tags)
|
acc.AddFields("mysql_perf_schema", fields, tags)
|
||||||
|
|
||||||
tags["operation"] = "write_concurrent_insert"
|
tags["operation"] = "write_concurrent_insert"
|
||||||
fields["sql_lock_waits_total"] = float64(countWriteConcurrentInsert)
|
fields["sql_lock_waits_total"] = countWriteConcurrentInsert
|
||||||
acc.AddFields("mysql_perf_schema", fields, tags)
|
acc.AddFields("mysql_perf_schema", fields, tags)
|
||||||
|
|
||||||
tags["operation"] = "write_delayed"
|
tags["operation"] = "write_delayed"
|
||||||
fields["sql_lock_waits_total"] = float64(countWriteDelayed)
|
fields["sql_lock_waits_total"] = countWriteDelayed
|
||||||
acc.AddFields("mysql_perf_schema", fields, tags)
|
acc.AddFields("mysql_perf_schema", fields, tags)
|
||||||
|
|
||||||
tags["operation"] = "write_low_priority"
|
tags["operation"] = "write_low_priority"
|
||||||
fields["sql_lock_waits_total"] = float64(countWriteLowPriority)
|
fields["sql_lock_waits_total"] = countWriteLowPriority
|
||||||
acc.AddFields("mysql_perf_schema", fields, tags)
|
acc.AddFields("mysql_perf_schema", fields, tags)
|
||||||
|
|
||||||
delete(fields, "sql_lock_waits_total")
|
delete(fields, "sql_lock_waits_total")
|
||||||
|
|
||||||
tags["operation"] = "read"
|
tags["operation"] = "read"
|
||||||
fields["external_lock_waits_total"] = float64(countReadExternal)
|
fields["external_lock_waits_total"] = countReadExternal
|
||||||
acc.AddFields("mysql_perf_schema", fields, tags)
|
acc.AddFields("mysql_perf_schema", fields, tags)
|
||||||
|
|
||||||
tags["operation"] = "write"
|
tags["operation"] = "write"
|
||||||
fields["external_lock_waits_total"] = float64(countWriteExternal)
|
fields["external_lock_waits_total"] = countWriteExternal
|
||||||
acc.AddFields("mysql_perf_schema", fields, tags)
|
acc.AddFields("mysql_perf_schema", fields, tags)
|
||||||
|
|
||||||
delete(fields, "external_lock_waits_total")
|
delete(fields, "external_lock_waits_total")
|
||||||
|
|
||||||
tags["operation"] = "read_normal"
|
tags["operation"] = "read_normal"
|
||||||
fields["sql_lock_waits_seconds_total"] = float64(timeReadNormal / picoSeconds)
|
fields["sql_lock_waits_seconds_total"] = timeReadNormal / picoSeconds
|
||||||
acc.AddFields("mysql_perf_schema", fields, tags)
|
acc.AddFields("mysql_perf_schema", fields, tags)
|
||||||
|
|
||||||
tags["operation"] = "read_with_shared_locks"
|
tags["operation"] = "read_with_shared_locks"
|
||||||
fields["sql_lock_waits_seconds_total"] = float64(timeReadWithSharedLocks / picoSeconds)
|
fields["sql_lock_waits_seconds_total"] = timeReadWithSharedLocks / picoSeconds
|
||||||
acc.AddFields("mysql_perf_schema", fields, tags)
|
acc.AddFields("mysql_perf_schema", fields, tags)
|
||||||
|
|
||||||
tags["operation"] = "read_high_priority"
|
tags["operation"] = "read_high_priority"
|
||||||
fields["sql_lock_waits_seconds_total"] = float64(timeReadHighPriority / picoSeconds)
|
fields["sql_lock_waits_seconds_total"] = timeReadHighPriority / picoSeconds
|
||||||
acc.AddFields("mysql_perf_schema", fields, tags)
|
acc.AddFields("mysql_perf_schema", fields, tags)
|
||||||
|
|
||||||
tags["operation"] = "read_no_insert"
|
tags["operation"] = "read_no_insert"
|
||||||
fields["sql_lock_waits_seconds_total"] = float64(timeReadNoInsert / picoSeconds)
|
fields["sql_lock_waits_seconds_total"] = timeReadNoInsert / picoSeconds
|
||||||
acc.AddFields("mysql_perf_schema", fields, tags)
|
acc.AddFields("mysql_perf_schema", fields, tags)
|
||||||
|
|
||||||
tags["operation"] = "write_normal"
|
tags["operation"] = "write_normal"
|
||||||
fields["sql_lock_waits_seconds_total"] = float64(timeWriteNormal / picoSeconds)
|
fields["sql_lock_waits_seconds_total"] = timeWriteNormal / picoSeconds
|
||||||
acc.AddFields("mysql_perf_schema", fields, tags)
|
acc.AddFields("mysql_perf_schema", fields, tags)
|
||||||
|
|
||||||
tags["operation"] = "write_allow_write"
|
tags["operation"] = "write_allow_write"
|
||||||
fields["sql_lock_waits_seconds_total"] = float64(timeWriteAllowWrite / picoSeconds)
|
fields["sql_lock_waits_seconds_total"] = timeWriteAllowWrite / picoSeconds
|
||||||
acc.AddFields("mysql_perf_schema", fields, tags)
|
acc.AddFields("mysql_perf_schema", fields, tags)
|
||||||
|
|
||||||
tags["operation"] = "write_concurrent_insert"
|
tags["operation"] = "write_concurrent_insert"
|
||||||
fields["sql_lock_waits_seconds_total"] = float64(timeWriteConcurrentInsert / picoSeconds)
|
fields["sql_lock_waits_seconds_total"] = timeWriteConcurrentInsert / picoSeconds
|
||||||
acc.AddFields("mysql_perf_schema", fields, tags)
|
acc.AddFields("mysql_perf_schema", fields, tags)
|
||||||
|
|
||||||
tags["operation"] = "write_delayed"
|
tags["operation"] = "write_delayed"
|
||||||
fields["sql_lock_waits_seconds_total"] = float64(timeWriteDelayed / picoSeconds)
|
fields["sql_lock_waits_seconds_total"] = timeWriteDelayed / picoSeconds
|
||||||
acc.AddFields("mysql_perf_schema", fields, tags)
|
acc.AddFields("mysql_perf_schema", fields, tags)
|
||||||
|
|
||||||
tags["operation"] = "write_low_priority"
|
tags["operation"] = "write_low_priority"
|
||||||
fields["sql_lock_waits_seconds_total"] = float64(timeWriteLowPriority / picoSeconds)
|
fields["sql_lock_waits_seconds_total"] = timeWriteLowPriority / picoSeconds
|
||||||
acc.AddFields("mysql_perf_schema", fields, tags)
|
acc.AddFields("mysql_perf_schema", fields, tags)
|
||||||
|
|
||||||
delete(fields, "sql_lock_waits_seconds_total")
|
delete(fields, "sql_lock_waits_seconds_total")
|
||||||
|
|
||||||
tags["operation"] = "read"
|
tags["operation"] = "read"
|
||||||
fields["external_lock_waits_seconds_total"] = float64(timeReadExternal / picoSeconds)
|
fields["external_lock_waits_seconds_total"] = timeReadExternal / picoSeconds
|
||||||
acc.AddFields("mysql_perf_schema", fields, tags)
|
acc.AddFields("mysql_perf_schema", fields, tags)
|
||||||
|
|
||||||
tags["operation"] = "write"
|
tags["operation"] = "write"
|
||||||
fields["external_lock_waits_seconds_total"] = float64(timeWriteExternal / picoSeconds)
|
fields["external_lock_waits_seconds_total"] = timeWriteExternal / picoSeconds
|
||||||
acc.AddFields("mysql_perf_schema", fields, tags)
|
acc.AddFields("mysql_perf_schema", fields, tags)
|
||||||
}
|
}
|
||||||
return nil
|
return nil
|
||||||
|
@ -1265,7 +1266,7 @@ func (m *Mysql) gatherPerfEventWaits(db *sql.DB, serv string, acc telegraf.Accum
|
||||||
|
|
||||||
var (
|
var (
|
||||||
event string
|
event string
|
||||||
starCount, timeWait uint64
|
starCount, timeWait float64
|
||||||
)
|
)
|
||||||
|
|
||||||
servtag, err := parseDSN(serv)
|
servtag, err := parseDSN(serv)
|
||||||
|
@ -1280,9 +1281,10 @@ func (m *Mysql) gatherPerfEventWaits(db *sql.DB, serv string, acc telegraf.Accum
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
tags["event_name"] = event
|
tags["event_name"] = event
|
||||||
fields := make(map[string]interface{})
|
fields := map[string]interface{}{
|
||||||
fields["events_waits_total"] = float64(starCount)
|
"events_waits_total": starCount,
|
||||||
fields["events_waits_seconds_total"] = float64(timeWait) / picoSeconds
|
"events_waits_seconds_total": timeWait / picoSeconds,
|
||||||
|
}
|
||||||
|
|
||||||
acc.AddFields("mysql_perf_schema", fields, tags)
|
acc.AddFields("mysql_perf_schema", fields, tags)
|
||||||
}
|
}
|
||||||
|
@ -1300,9 +1302,9 @@ func (m *Mysql) gatherPerfFileEventsStatuses(db *sql.DB, serv string, acc telegr
|
||||||
|
|
||||||
var (
|
var (
|
||||||
eventName string
|
eventName string
|
||||||
countRead, countWrite, countMisc uint64
|
countRead, countWrite, countMisc float64
|
||||||
sumTimerRead, sumTimerWrite, sumTimerMisc uint64
|
sumTimerRead, sumTimerWrite, sumTimerMisc float64
|
||||||
sumNumBytesRead, sumNumBytesWrite uint64
|
sumNumBytesRead, sumNumBytesWrite float64
|
||||||
)
|
)
|
||||||
|
|
||||||
servtag, err := parseDSN(serv)
|
servtag, err := parseDSN(serv)
|
||||||
|
@ -1327,20 +1329,20 @@ func (m *Mysql) gatherPerfFileEventsStatuses(db *sql.DB, serv string, acc telegr
|
||||||
fields := make(map[string]interface{})
|
fields := make(map[string]interface{})
|
||||||
|
|
||||||
tags["mode"] = "misc"
|
tags["mode"] = "misc"
|
||||||
fields["file_events_total"] = float64(countWrite)
|
fields["file_events_total"] = countWrite
|
||||||
fields["file_events_seconds_total"] = float64(sumTimerMisc) / picoSeconds
|
fields["file_events_seconds_total"] = sumTimerMisc / picoSeconds
|
||||||
acc.AddFields("mysql_perf_schema", fields, tags)
|
acc.AddFields("mysql_perf_schema", fields, tags)
|
||||||
|
|
||||||
tags["mode"] = "read"
|
tags["mode"] = "read"
|
||||||
fields["file_events_total"] = float64(countRead)
|
fields["file_events_total"] = countRead
|
||||||
fields["file_events_seconds_total"] = float64(sumTimerRead) / picoSeconds
|
fields["file_events_seconds_total"] = sumTimerRead / picoSeconds
|
||||||
fields["file_events_bytes_totals"] = float64(sumNumBytesRead)
|
fields["file_events_bytes_totals"] = sumNumBytesRead
|
||||||
acc.AddFields("mysql_perf_schema", fields, tags)
|
acc.AddFields("mysql_perf_schema", fields, tags)
|
||||||
|
|
||||||
tags["mode"] = "write"
|
tags["mode"] = "write"
|
||||||
fields["file_events_total"] = float64(countWrite)
|
fields["file_events_total"] = countWrite
|
||||||
fields["file_events_seconds_total"] = float64(sumTimerWrite) / picoSeconds
|
fields["file_events_seconds_total"] = sumTimerWrite / picoSeconds
|
||||||
fields["file_events_bytes_totals"] = float64(sumNumBytesWrite)
|
fields["file_events_bytes_totals"] = sumNumBytesWrite
|
||||||
acc.AddFields("mysql_perf_schema", fields, tags)
|
acc.AddFields("mysql_perf_schema", fields, tags)
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -1459,12 +1461,12 @@ func (m *Mysql) gatherTableSchema(db *sql.DB, serv string, acc telegraf.Accumula
|
||||||
tableName string
|
tableName string
|
||||||
tableType string
|
tableType string
|
||||||
engine string
|
engine string
|
||||||
version uint64
|
version float64
|
||||||
rowFormat string
|
rowFormat string
|
||||||
tableRows uint64
|
tableRows float64
|
||||||
dataLength uint64
|
dataLength float64
|
||||||
indexLength uint64
|
indexLength float64
|
||||||
dataFree uint64
|
dataFree float64
|
||||||
createOptions string
|
createOptions string
|
||||||
)
|
)
|
||||||
for rows.Next() {
|
for rows.Next() {
|
||||||
|
@ -1489,23 +1491,23 @@ func (m *Mysql) gatherTableSchema(db *sql.DB, serv string, acc telegraf.Accumula
|
||||||
tags["table"] = tableName
|
tags["table"] = tableName
|
||||||
versionTags := tags
|
versionTags := tags
|
||||||
|
|
||||||
acc.Add(newNamespace("info_schema", "table_rows"), float64(tableRows), tags)
|
acc.Add(newNamespace("info_schema", "table_rows"), tableRows, tags)
|
||||||
|
|
||||||
tags["component"] = "data_length"
|
tags["component"] = "data_length"
|
||||||
acc.Add(newNamespace("info_schema", "table_size", "data_length"), float64(dataLength), tags)
|
acc.Add(newNamespace("info_schema", "table_size", "data_length"), dataLength, tags)
|
||||||
|
|
||||||
tags["component"] = "index_length"
|
tags["component"] = "index_length"
|
||||||
acc.Add(newNamespace("info_schema", "table_size", "index_length"), float64(indexLength), tags)
|
acc.Add(newNamespace("info_schema", "table_size", "index_length"), indexLength, tags)
|
||||||
|
|
||||||
tags["component"] = "data_free"
|
tags["component"] = "data_free"
|
||||||
acc.Add(newNamespace("info_schema", "table_size", "data_free"), float64(dataFree), tags)
|
acc.Add(newNamespace("info_schema", "table_size", "data_free"), dataFree, tags)
|
||||||
|
|
||||||
versionTags["type"] = tableType
|
versionTags["type"] = tableType
|
||||||
versionTags["engine"] = engine
|
versionTags["engine"] = engine
|
||||||
versionTags["row_format"] = rowFormat
|
versionTags["row_format"] = rowFormat
|
||||||
versionTags["create_options"] = createOptions
|
versionTags["create_options"] = createOptions
|
||||||
|
|
||||||
acc.Add(newNamespace("info_schema", "table_version"), float64(version), versionTags)
|
acc.Add(newNamespace("info_schema", "table_version"), version, versionTags)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return nil
|
return nil
|
||||||
|
|
Loading…
Reference in New Issue