Hey all
I’m trying to export custom metrics from my app using Yabeda, and I can’t get them on Prometheus for the life of me.
When I hit myapp.com/metrics, I can see all the metrics are there, but I can’t see them on Grafana.
my fly.toml
is something like this
[processes]
web = "./bin/rails server"
job = "bin/good_job --probe-port=7001"
[[metrics]]
port = 9394
path = "/metrics"
processes = ["web"]
I tried to change this port to anything imaginable (9091, 3000, etc) and seems like it is never picked up by Prometeheus
Has anyone had any luck with Yabeda/Prometheus?