mauricioabreu / nginx_rtmp_prometheus

Prometheus exporter for NGINX-RTMP
MIT License
27 stars 10 forks source link

Bug in Traffic #7

Closed genofire closed 3 years ago

genofire commented 3 years ago

the nginx-rtmp shows MB/s but exporter just B/s -


there are several:

    bandwidthInNum = n / 1048576 // bandwidth is in bits

should it be replaced by

    bandwidthInNum = n * 1048576 // bandwidth is in bits

???

mauricioabreu commented 3 years ago

I think this comment could be improved but it means "NGINX-RTMP saves this metric as bits and we need to convert to bytes"