How do I get Gateway API data into Grafana Cloud

When it comes to adding metrics into Grafana, Radix have provided the metrics end point which provides a certain amount of data from the node in Prometheus format which can then be visualised by Grafana.

However, there may be other metrics that node runners desire that are not currently present in the core API, but may be present in the Gateway. This post explains how to import REST API data directly into Grafana. For this example we will use Validator Total Stake (this is currently not available in the Core API, but can be requested through the Gateway).

  1. Find the Infinity data source by selecting configurationā€“>data sourcesā€“>add data sourceā€“>find more data source plugins on grafana
    image
  2. add the plugin to Grafana cloud (there are also instructions if you are using Grafana locally)
    image
  3. add the data source by selecting it from the list in Grafana cloud
  4. add a new panel using the ā€œStatā€ visualisation and the fields below:
    image
  5. in the HTTP method, query param, headers option - enter POST as the method along with the following body:
{
  "network_identifier": {
    "network": "mainnet"
  },
  "validator_identifier": {
    "address": "rv1qdzgjh98d4mexymc492eq82zwmspmh9mlz4wqgswta4jcaw0nnwuj53mj5w"
  },
  "at_state_identifier": {
    "epoch": "0"
  }
}
  1. Make sure the header ā€œcontent-type = application/jsonā€ is also included in the header tab.
  2. Using the transform field, reduce the field to a more human number by dividing by 1E18 and select ā€˜replace all fieldsā€™
    image
  3. In the panel options, select 0 for decimals
  4. You now have validator total stake displayed on your dashboard!
5 Likes