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
Currently, ipvs collector (enabled by default) collect (local_address) x (local_port) x (proto) x (remote_address) x (remote_port) x 3 metrics (ex. node_ipvs_backend_connections_active).
When the servers are used as Load Balancer or k8s nodes, the cardinality of those metrics become very high.
For example, one of my server reports 18263 metics from node exporter while normal servers report around 700-800 metrics.
Proposal
Add --collector.ipvs.sum-by=XXX option to aggregate metrics for reducing the cardinality.
For example, add --collector.ipvs.sum-by=local_address,local_port will only reports sum by (local_address,local_port)(node_ipvs_XXXX).