I'm using Grafana+Prometheus+node_exporter to monitor Linux servers. Grafana dashboard (1860) is great.
I want to see cpu model on the dashboard. But node exporter does not have a such metric as model name is not a real metric.
The information exists in node_cpu_info metric. (shown below)
But model_name information is located in the "key" part, not at value part, so when i query this metric i got "1" as result.
So my question is: Is it possible to take only "model_name"=.. part from metrics and show it on the dashboard? (Intel(R) Xeon(R) Gold 6152 CPU @ 2.10GHz)
sample metric:
node_cpu_info{cachesize="30976 KB",core="0",cpu="0",family="6",microcode="0x200002c",model="85",model_name="Intel(R) Xeon(R) Gold 6152 CPU @ 2.10GHz",package="0",stepping="4",vendor="GenuineIntel"} 1


