Hello,
I wonder how can I show large integers as integers with the client_golang. For example, if I set 1234567 in a gauge, it is displayed like this
sample_gauge 1.234567e+06
I would like to show it as follows.
sample_gauge 1234567
I understand the value of metrics is float64 and it should use scientific notation for a very large number, but it must be possible to show a 7 digits number as is. Does anybody know how to control the format of the metrics value?
Thanks
Ken SATO