How can I create aliases (readable names) for urls in heartbeat monitor yml file for Kibana visualization

Hi I have a yml file for heartbeat monitor configuration containing urls for various services in the following format :

How can I create/add aliases in such a way that against each url I can fetch the service and display only the service name in kibana visualizations and dashboards?

Hi,

- type: http 
  name: "My Fancy Service 1"
  enabled: true
  schedule: '@every 30s'
  urls: ["https://myfancy.service.com/getStatus"]

- type: http 
  name: "My other service"
  enabled: true
  schedule: '@every 30s'
  urls: ["https://myother.service.com/getStatus"]

you could just use name: "servicename"

1 Like

Thanks @philippkahr! It works.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.