node.js - Gauge value emitted is interpreted as count by statsd -


i using statsd publish metrics example application. using aws-cloudwatch-statsd-backend node module.

i sending gauge metric as:

echo "health:10|g" | nc -w1 -u 127.0.0.1 8125 

in flush handler:

function(timestamp, metrics) { .. } 

i see metric present in metric.counters , not in metrics.gauge .

thanks in advance.


Comments

Popular posts from this blog

sql server - Cannot query correctly (MSSQL - PHP - JSON) -

php - trouble displaying mysqli database results in correct order -

C++ Linked List -