[Prometheus] filter or allowlist metrics before sending to the remote storage via remote_write in Prometheus
There are a few options to filter or allowlist metrics before they are sent to the remote storage via remote_write in Prometheus: 1. Use metric relabeling You can configure relabelling rules on the remote_write config to filter or transform metrics before they are sent. For example: with metrics: my_metric_http{status_code=200, cluster=nim] 100my_metric_http{status_code=500, cluster=nim] 100k8s_metric_memory{container=web, cluster=nim] 100…