Consider the following query:
Perf
| where CounterName == '% Processor Time'
| project TimeGenerated, CounterValue
| render timechart
It yields something like this:
I would like it to display '% Processor Time' instead of CounterValue. However, I cannot use project_rename
, since the desired title contains spaces. So, how do I do it?