Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Alerting: Add MQTT notifications receiver #1746

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

alexander-akhmetov
Copy link

@alexander-akhmetov alexander-akhmetov commented Aug 3, 2024

Adds support for MQTT notifications receiver.

Example:

resource "grafana_contact_point" "mqtt" {
  name = "mqtt-contact-point"

  mqtt {
    broker_url     = "tcp://localhost:1883"
    client_id      = "grafana"
    topic          = "grafana/alerts"
    message_format = "json"
    username       = "user"
    password       = "password123"
    qos            = 1
    retain         = true
    tls_config {
      insecure_skip_verify = true
      ca_certificate       = "ca_cert"
      client_certificate   = "client_cert"
      client_key           = "client_key"
    }
  }
}

Copy link

github-actions bot commented Aug 3, 2024

In order to lower resource usage and have a faster runtime, PRs will not run Cloud tests automatically.
To do so, a Grafana Labs employee must trigger the cloud acceptance tests workflow manually.

@alexander-akhmetov alexander-akhmetov requested a review from a team as a code owner November 16, 2024 09:44
@alexander-akhmetov alexander-akhmetov marked this pull request as draft November 16, 2024 09:44
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants