Monitoring using prometheus and Grafana

Hm, that’s strange, I thought I did install node-exporter. I think I should try again.

If you installed, then you need to configure prometheus to read those metrics…

usually it runs on 9100 port so something like this should be in your prometheus.yml

 - job_name: "node"

    static_configs:
      - targets: ["producer.hostname.com:9100"]
        labels:
          alias: 'producer'
          type:  'cardano-node'

These is my full config file: