I am migrating to Google Managed Prometheus. I've been using a helm deployed version of Prometheus to monitor my kubernetes cluster. The helm deployed Prometheus has a variety of selectors, including Pod Monitors, Service Monitors, and Probe Monitors. The Google Managed Prometheus only has pod monitors (PodMonitoring). I'm using Google Managed Prometheus with a managed collection.
I'd like to keep using my blackbox-exporter probes for uptime metrics. I configured this with a "kind: Probe" on my existing Prometheus. However, with Google Managed Promtheus only using PodMonitoring, I'm not sure that the blackbox-exporter is compatible.
I like the blackbox-exporter because I can configure it to check all my ingress hosts without having to manually create one for each. I'm frequently adding new ingresses with new endpoints to my cluster so this automation has been great.
Has anyone configured the blackbox-exporter with Google Managed Prometheus?
I've tried port forwarding the actual blackbox-exporter pod to see what metrics it exposes, but that doesn't show all the metrics I'd like.
There can only (!?) be one
endpoints
item perPodMonitoring
and the query string for/probe?...
must be defined in terms ofparams
. See examples below.This restriction appears to contradict the CRDs:
PodMonitoring
PodMonitor
To probe multiple e.g. Ingresses, you could have a single Blackbox exporter
Deployment
but you'd need to have onePodMonitoring
per Ingress, e.g.:podmonitorings.yaml
:blackbox-exporter.yaml
config defines:ConfigMap
that defines a Blackbox Exporter confighttp_2xx
foo
(gRPC prober)Deployment
of the Blackbox Exporter using theConfigMap
blackbox-exporter.yaml
:Then you'll need to
PATCH
operatorconfig/config
in Namespacegmp-public
. There are several ways to do this. Don't delete any content from this file but ensure thatmatchOneOf
list includes some of the newly expected metric names:You'll want to add the metrics that you want to include:
Once scraped (~1m), you will see
blackbox_exporter_*
andprobe_*
metrics listed under Metrics Diagnostics:And be able to query them in Google's Metrics exporter and the Google-managed Prometheus frontend:
https://console.cloud.google.com/monitoring/metrics-diagnostics;duration=PT1H?project={project}
You can port-forward to the Blackbox Exporter to execute probes:
And then (locally):