Visualize metrics from node_exporter and windows_exporter

I’m trying to achieve having a single dashboard that will jointly display data coming from both node_exporter and windows_exporter.

In particular I’m trying to have metrics coming from windows_exporter to be visualized in the same panels with metrics coming from node_exporter.

The dashboard has the following panels:

CPU Usage %
Memory Usage %
System Load Average
System Pressure Stall
Disk Usage %
Disk IOps
Disk Utilization %
Network Traffic
System Information

So far, I’ve been able to fill in the panels where their queried metrics somehow have an equivalent between node_exporter and windows_exporter.

Namely:

CPU Usage %:

node_exporter windows_exporter
node_cpu_seconds_total windows_cpu_time_total

Memory Usage %:

node_exporter windows_exporter
node_memory_MemAvailable_bytes windows_memory_available_bytes
node_memory_MemTotal_bytes windows_memory_physical_total_bytes

Network Traffic:

node_exporter windows_exporter
node_network_receive_bytes_total windows_net_bytes_received_total
node_network_transmit_bytes_total windows_net_bytes_sent_total

System Information:

node_exporter windows_exporter
node_boot_time_seconds windows_system_boot_time_timestamp

What remains is finding out how to proceed with the following sections and their respectful metrics:

System Load:

node_exporter windows_exporter
node_load1
node_load5
node_load15

System Pressure Stall:

node_exporter windows_exporter
node_pressure_io_stalled_seconds_total
node_pressure_cpu_stalled_seconds_total
node_pressure_memory_stalled_seconds_total

Disk Usage %:

node_exporter windows_exporter
node_filesystem_avail_bytes
node_filesystem_size_bytes

Disk IOps:

node_exporter windows_exporter
node_disk_reads_completed_total
node_disk_writes_completed_total

Disk Utilization %:

node_exporter windows_exporter
node_disk_io_time_seconds_total

So taking all these into account my question is that as I have the feel that my need is not unique to my setup, meaning others too would benefit from having a dashboard that combines metrics from both node_exporter and windows_exporter how come there isn’t a dashboard template that achieves that?