Hi Deeraj, While the Node Exporter exposes transmit / receive metrics for each network interface, this information would not tell you where the traffic is going. Putting destinations like public IPs into Prometheus label values would quickly create unboundedly large cardinality (huge numbers of time series) that would blow up your Prometheus server. Putting network IDs in there (like AS numbers) probably would still be problematic, but somewhat less so, depending on your use case. However, you'd anyways need to build some kind of exporter that tells you that kind of level of detail in your metrics first. Some exporters like https://github.com/neptune-networks/flow-exporter actually capture Netflow data and report source and destination AS identities, maybe that can be interesting to take a look at.
Regards, Julius On Fri, Jun 3, 2022 at 8:46 PM Deeraj V <[email protected]> wrote: > Hello Team, > > Is it possible to get the traffic rate that is going out on a interface > (ex: eno1) towards a particular destination like network or ip? > > Does Prometheus support any metrics ? > > If yes, can anybody help me out as I am stuck with requirements? > > Thanks > DV > > -- > You received this message because you are subscribed to the Google Groups > "Prometheus Users" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To view this discussion on the web visit > https://groups.google.com/d/msgid/prometheus-users/9222c6ae-7768-4c6e-86e0-8ec522647fc6n%40googlegroups.com > <https://groups.google.com/d/msgid/prometheus-users/9222c6ae-7768-4c6e-86e0-8ec522647fc6n%40googlegroups.com?utm_medium=email&utm_source=footer> > . > -- Julius Volz PromLabs - promlabs.com -- You received this message because you are subscribed to the Google Groups "Prometheus Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/prometheus-users/CAObpH5ycZ51XHeNrF4a_6Q7uhnh1z9tqKdsnLfX4_ezGSpsJsQ%40mail.gmail.com.

