Project

General

Profile

Actions

Feature #46775

closed

mgr/cephadm: Enhance AlertManagerSpec to allow adding additional webhook receiver URLs

Added by Volker Theile over 3 years ago. Updated over 3 years ago.

Status:
Resolved
Priority:
Normal
Assignee:
Category:
orchestrator
Target version:
% Done:

0%

Source:
Development
Tags:
Backport:
Reviewed:
Affected Versions:
Pull request ID:

Description

Add the ability to configure webhook receiver URLs for additional external webhooks. This enhancement will be as simple as possible, there are no plans to support all alertmanager configuration features. The implementation will consider a later expansion.

Example spec:

service_type: alertmanager
service_id: xyz
user_data:
   default_webhook_urls:
   - "https://foo" 
   - "https://bar" 

The alertmanager.yml file will now contain a 'default' receiver configuration where these additional URLs will be added. A second route will contain the already existing receiver configuration for the Dashboard.

The resulting alertmanager.yml file will look like:

# This file is generated by cephadm.
# See https://prometheus.io/docs/alerting/configuration/ for documentation.

global:
  resolve_timeout: 5m

route:
  receiver: 'default'
  routes:
    - group_by: ['alertname']
      group_wait: 10s
      group_interval: 10s
      repeat_interval: 1h
      receiver: 'ceph-dashboard'

receivers:
- name: 'default'
  webhook_configs:
  - url: 'https://foo'
  - url: 'https://bar'
- name: 'ceph-dashboard'
  webhook_configs:
  - url: 'https://localhost:41211/api/prometheus_receiver'


Related issues 1 (0 open1 closed)

Related to Orchestrator - Feature #46666: cephadm: Introduce 'container' specification to deploy custom containersResolvedVolker Theile

Actions
Actions #1

Updated by Volker Theile over 3 years ago

  • Status changed from New to Fix Under Review
  • Pull request ID set to 36371
Actions #2

Updated by Volker Theile over 3 years ago

  • Status changed from Fix Under Review to Resolved
Actions #3

Updated by Lenz Grimmer over 3 years ago

  • Related to Feature #46666: cephadm: Introduce 'container' specification to deploy custom containers added
Actions #4

Updated by Sebastian Wagner over 3 years ago

  • Target version changed from v16.0.0 to v15.2.5
Actions

Also available in: Atom PDF