Create many Datasources from one Prometheus server being feed from many servers

I’ve created a dashboard for a Prometheus feed.

Prometheus is getting data from 2 separate servers.
I want to display the data on 2 dashboards, one for server1 and one for server2

This is the Prometheus configuration:
scrape_configs:

  • job_name: ‘custom_iris_metrics’
    metrics_path: ‘/api/monitor/metrics’
    static_configs:
    • targets:
      • ‘server1:52773’
      • ‘server2:52773’

In Grafana, I’ve created a Datasource to point to prometheusServer:9090

How can I create two Grafana Datasources, one per server?