Skip to content

Commit

Permalink
update structures
Browse files Browse the repository at this point in the history
  • Loading branch information
manuelsaks committed Dec 22, 2024
1 parent b342512 commit 15a98ab
Show file tree
Hide file tree
Showing 3 changed files with 58 additions and 36 deletions.
20 changes: 11 additions & 9 deletions metricbeat/module/pgbouncer/lists/_meta/data.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,23 +11,25 @@
},
"pgbouncer": {
"lists": {
"databases": 1,
"users": 2,
"peers": 0,
"pools": 1,
"peer_pools": 0,
"clients": {
"free": 47,
"used": 3,
"free": 49,
"used": 1,
"login": 0
},
"peers": 0,
"peer_pools": 0,
"dns_queries": 0,
"databases": 1,
"dns_names": 0,
"servers": {
"free": 0,
"used": 0
},
"dns_zones": 0,
"pools": 1
"dns": {
"zones": 0,
"queries": 0,
"names": 0
}
}
},
"service": {
Expand Down
26 changes: 15 additions & 11 deletions metricbeat/module/pgbouncer/pools/_meta/data.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,21 +11,25 @@
},
"pgbouncer": {
"pools": {
"sv_tested": 0,
"cl_waiting": 0,
"sv_login": 0,
"maxwait_us": 0,
"pool_mode": "statement",
"cl_active": 3,
"database": "pgbouncer",
"sv_active_cancel": 0,
"user": "pgbouncer",
"cl_active_cancel_req": 0,
"sv_being_canceled": 0,
"sv_idle": 0,
"cl_waiting_cancel_req": 0,
"sv_active": 0,
"sv_used": 0
"client": {
"active": 2,
"waiting": 0,
"active_cancel_req": 0,
"waiting_cancel_req": 0
},
"server": {
"used": 0,
"tested": 0,
"login": 0,
"active": 0,
"active_cancel": 0,
"being_canceled": 0,
"idle": 0
}
}
},
"service": {
Expand Down
48 changes: 32 additions & 16 deletions metricbeat/module/pgbouncer/stats/_meta/data.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,23 +11,39 @@
},
"pgbouncer": {
"stats": {
"total_server_assignment_count": 0,
"total_sent": 0,
"avg_sent": 0,
"total_wait_time_us": 0,
"database": "pgbouncer",
"total_xact_count": 25,
"total_received": 0,
"total_query_count": 25,
"avg_query_count": 0,
"avg_xact_time_us": 0,
"avg_query_time_us": 0,
"total_query_time_us": 0,
"avg_recv": 0,
"total_xact_time_us": 0,
"avg_xact_count": 0,
"avg_wait_time_us": 0,
"avg_server_assignment_count": 0
"server_assignment_count": {
"total": 0,
"avg": 0
},
"received": {
"total": 0,
"avg": 0
},
"query_time_us": {
"total": 0,
"avg": 0
},
"sent": {
"total": 0,
"avg": 0
},
"xact_count": {
"total": 5,
"avg": 0
},
"wait_time_us": {
"avg": 0,
"total": 0
},
"query_count": {
"avg": 0,
"total": 5
},
"xact_time_us": {
"avg": 0,
"total": 0
}
}
},
"service": {
Expand Down

0 comments on commit 15a98ab

Please sign in to comment.