You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Regarding metric values, exometer is a bit ambivalent. Basically, metric values can be of any type, but some metric types, e.g. histograms, require inputs to be numeric, but will simply discard update values that are non-numeric. The thinking behind that is that metric update operations should never crash the caller, but also, a single 'bad' update should not be allowed to crash the histogram.
The exometer_function module makes no assumptions about the return value, but function metrics can be very useful for transforming the values of other metrics ...
... or at least it could be. I tried to make a simple example, but found a number of things I'd like to fix. Thus the delay in responding. :)
Whats the best way to representing a given state of a managed object? In example in SNMP you have
Integers representing a given state on an interface:
http://www.net-snmp.org/docs/mibs/interfaces.html
should we use an exometer_function or (ab)use a gauge for that?
further, can a exometer_function represent any datatype or only numerical values?
The text was updated successfully, but these errors were encountered: