You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On top of the prometheus provided metrics, we added these three ones:
25
+
```
26
+
haproxy_reloads_total: The number of haproxy reloads partitioned by result (success/failure)
27
+
haproxy_restarts_total: The number of haproxy restarts partitioned by result (success/failure)
28
+
haproxy_runtime_socket_connections_total: The number of haproxy runtime socket connections partitioned by object (server/map) and result (success/failure)
29
+
```
30
+
31
+
32
+
### Example
33
+
34
+
Metrics are exposed outside on the haproxy-kubernetes-ingress service, http nodePort, on the `/mterics` endpoint.
# HELP haproxy_reloads_total The number of haproxy reloads partitioned by result (success/failure)
40
+
# TYPE haproxy_reloads_total counter
41
+
haproxy_reloads_total{result="success"} 4
42
+
# HELP haproxy_restarts_total The number of haproxy restarts partitioned by result (success/failure)
43
+
# TYPE haproxy_restarts_total counter
44
+
haproxy_restarts_total{result="success"} 1
45
+
# HELP haproxy_runtime_socket_connections_total The number of haproxy runtime socket connections partitioned by object (server/map) and result (success/failure)
46
+
# TYPE haproxy_runtime_socket_connections_total counter
0 commit comments