1

In grafana charts I try to add notifiers and getting the error. The notifiers conf is below:

notifiers: {}
    - name: email-notifier
      type: email
      uid: email1
      # either:
      org_id: 1
      # or
      org_name: Main Org.
      is_default: true
      settings:
        addresses: an_email_address@example.com
Eljah
  • 4,188
  • 4
  • 41
  • 85

1 Answers1

1

The critical part was missing there were

notifiers.yaml:

notifiers:

in

notifiers: {}
  notifiers.yaml:
    notifiers:
    - name: email-notifier
      type: email
      uid: email1
      # either:
      org_id: 1
      # or
      org_name: Main Org.
      is_default: true
      settings:
        addresses: an_email_address@example.com
Eljah
  • 4,188
  • 4
  • 41
  • 85