Hey,
I have some custom perfometers and most of them use a logarithmic scale. Here is an example of one of them:
from cmk.gui.plugins.metrics import perfometer_info
perfometer_info.append({
'type': 'logarithmic',
'metric': 'metric_transaction',
'half_value': 20,
'exponent': 1.5,
})
How to migrate them to the cmk.graphing.v1.perfometers API in a reasonable way?
Thank you all!