tynany / frr_exporter

Prometheus exporter for Free Range Routing
MIT License
100 stars 34 forks source link

How to use the exporter when running frr in container also #93

Closed MartijnStraatman closed 2 years ago

MartijnStraatman commented 2 years ago

Hi,

We are planning to use Frr and run it inside a container. Metrics are crucial for us. How can I access the metrics when frr is running in a container and this exporter also.

paketb0te commented 2 years ago

We used to do this by creating a shared volume that gets mounted into both the FRR container and the exporter container, and then place the control socket there.

Nowadays we run k8s so we just stick both containers into the same pod.

MartijnStraatman commented 2 years ago

Ok, thx !