Looking for a feature similar to Grafana, whereby query I can gather Nginx-ingress endpoint (using Prometheus exporter or etc) and create automatic Synthetics check of them.
For example, in Grafana I have simple query which find all endpoint with sub-domain API and admin and check if their expected status code is 401:
count by (instance) (probe_http_status_code{target =~ "api[.].*|admin[.].*"} != 401 and probe_http_status_code{target =~ "api[.].*|admin[.].*"} != 0)
The general goal is to automatically create and monitor endpoints from the world without the manual process of creation of Synthetics because in my case I have more than 100+ endpoints which count will increase every week.
Is New Relic have features like this?