How to Remove IP listing in Host tab of Grafana dashboard?

1.7k Views Asked by At

I have added domain name of the client servers in the prometheus.yml file under targets by replacing the IP.

In Prometheus Status page it shows the domain name alone but in Grafana it shows both domain name and IP under Host tab. I have restarted the Grafana server also.

How to remove the IP listing in the Grafana dashboard page.

From where it has displaying the IP

1

There are 1 best solutions below

0
On

When you change the targets you are scraping the data for the old names and for the new names are not linked. The hostnames are just labels for a time series, so switching from IPs to hostnames in your config will create a new set of time series in Prometheus.

scrape_configs:
  - job_name: 'myservers'
    static_configs:
      - targets: ['256.256.256.256']

and

scrape_configs:
  - job_name: 'myservers'
    static_configs:
      - targets: ['no-reply.com']

will create different time series even if no-reply.com resolves to 256.256.256.256.

That said i would expect the IPs getting removed from your Host tab in Grafana as soon as the old time series drop out of the time range you are querying the data from.