Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions pgpool2_exporter.go
Original file line number Diff line number Diff line change
Expand Up @@ -171,23 +171,23 @@ var (
"port": {LABEL, "Backend port"},
"role": {LABEL, "Role (primary or standby)"},
"status": {GAUGE, "Backend node Status (1 for up or waiting, 0 for down or unused)"},
"select_cnt": {GAUGE, "SELECT statement counts issued to each backend"},
"select_cnt": {COUNTER, "SELECT statement counts issued to each backend"},
"replication_delay": {GAUGE, "Replication delay"},
},
"pool_backend_stats": {
"hostname": {LABEL, "Backend hostname"},
"port": {LABEL, "Backend port"},
"role": {LABEL, "Role (primary or standby)"},
"status": {GAUGE, "Backend node Status (1 for up or waiting, 0 for down or unused)"},
"select_cnt": {GAUGE, "SELECT statement counts issued to each backend"},
"insert_cnt": {GAUGE, "INSERT statement counts issued to each backend"},
"update_cnt": {GAUGE, "UPDATE statement counts issued to each backend"},
"delete_cnt": {GAUGE, "DELETE statement counts issued to each backend"},
"ddl_cnt": {GAUGE, "DDL statement counts issued to each backend"},
"other_cnt": {GAUGE, "other statement counts issued to each backend"},
"panic_cnt": {GAUGE, "Panic message counts returned from backend"},
"fatal_cnt": {GAUGE, "Fatal message counts returned from backend)"},
"error_cnt": {GAUGE, "Error message counts returned from backend"},
"select_cnt": {COUNTER, "SELECT statement counts issued to each backend"},
"insert_cnt": {COUNTER, "INSERT statement counts issued to each backend"},
"update_cnt": {COUNTER, "UPDATE statement counts issued to each backend"},
"delete_cnt": {COUNTER, "DELETE statement counts issued to each backend"},
"ddl_cnt": {COUNTER, "DDL statement counts issued to each backend"},
"other_cnt": {COUNTER, "other statement counts issued to each backend"},
"panic_cnt": {COUNTER, "Panic message counts returned from backend"},
"fatal_cnt": {COUNTER, "Fatal message counts returned from backend)"},
"error_cnt": {COUNTER, "Error message counts returned from backend"},
},
"pool_health_check_stats": {
"hostname": {LABEL, "Backend hostname"},
Expand Down