I have a Timelion chart that is showing MetricBeat data, so I would like the system.cpu.user.pct
for example, to be formatted as a percentage, not a 0-1 value.
Is there any way to format values in Timelion? The documentation is very sparse.
(.es(index='metricbeat-*',q='metricset.name:cpu',metric='avg:system.cpu.system.pct',offset='-28d'), .es(index='metricbeat-*',q='metricset.name:cpu',metric='avg:system.cpu.user.pct',offset='-28d')).sum().movingaverage(window=2).label('-4w').color(#ffcfb0),
(.es(index='metricbeat-*',q='metricset.name:cpu',metric='avg:system.cpu.system.pct',offset='-21d'), .es(index='metricbeat-*',q='metricset.name:cpu',metric='avg:system.cpu.user.pct',offset='-21d')).sum().movingaverage(window=2).label('-3w').color(#ffc5a0),
(.es(index='metricbeat-*',q='metricset.name:cpu',metric='avg:system.cpu.system.pct',offset='-14d'), .es(index='metricbeat-*',q='metricset.name:cpu',metric='avg:system.cpu.user.pct',offset='-14d')).sum().movingaverage(window=2).label('-2w').color(#ffbb90),
(.es(index='metricbeat-*',q='metricset.name:cpu',metric='avg:system.cpu.system.pct',offset='-7d'), .es(index='metricbeat-*',q='metricset.name:cpu',metric='avg:system.cpu.user.pct',offset='-7d')).sum().movingaverage(window=2).label('-1w').color(#ffb180),
(.es(index='metricbeat-*',q='metricset.name:cpu',metric='avg:system.cpu.system.pct'), .es(index='metricbeat-*',q='metricset.name:cpu',metric='avg:system.cpu.user.pct',offset='-7d')).sum().label('Today').movingaverage(window=2).color(#ff2c0f),