You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
143 lines
5.1 KiB
143 lines
5.1 KiB
# |
|
# Licensed to the Apache Software Foundation (ASF) under one |
|
# or more contributor license agreements. See the NOTICE file |
|
# distributed with this work for additional information |
|
# regarding copyright ownership. The ASF licenses this file |
|
# to you under the Apache License, Version 2.0 (the |
|
# "License"); you may not use this file except in compliance |
|
# with the License. You may obtain a copy of the License at |
|
# |
|
# http://www.apache.org/licenses/LICENSE-2.0 |
|
# |
|
# Unless required by applicable law or agreed to in writing, |
|
# software distributed under the License is distributed on an |
|
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
|
# KIND, either express or implied. See the License for the |
|
# specific language governing permissions and limitations |
|
# under the License. |
|
# |
|
from typing import Any, Dict, List, Optional |
|
|
|
from airflow.models import BaseOperator |
|
from airflow.providers.opsgenie.hooks.opsgenie_alert import OpsgenieAlertHook |
|
from airflow.utils.decorators import apply_defaults |
|
|
|
|
|
class OpsgenieAlertOperator(BaseOperator): |
|
""" |
|
This operator allows you to post alerts to Opsgenie. |
|
Accepts a connection that has an Opsgenie API key as the connection's password. |
|
This operator sets the domain to conn_id.host, and if not set will default |
|
to ``https://api.opsgenie.com``. |
|
|
|
Each Opsgenie API key can be pre-configured to a team integration. |
|
You can override these defaults in this operator. |
|
|
|
:param opsgenie_conn_id: The name of the Opsgenie connection to use |
|
:type opsgenie_conn_id: str |
|
:param message: The Message of the Opsgenie alert (templated) |
|
:type message: str |
|
:param alias: Client-defined identifier of the alert (templated) |
|
:type alias: str |
|
:param description: Description field of the alert (templated) |
|
:type description: str |
|
:param responders: Teams, users, escalations and schedules that |
|
the alert will be routed to send notifications. |
|
:type responders: list[dict] |
|
:param visible_to: Teams and users that the alert will become visible |
|
to without sending any notification. |
|
:type visible_to: list[dict] |
|
:param actions: Custom actions that will be available for the alert. |
|
:type actions: list[str] |
|
:param tags: Tags of the alert. |
|
:type tags: list[str] |
|
:param details: Map of key-value pairs to use as custom properties of the alert. |
|
:type details: dict |
|
:param entity: Entity field of the alert that is |
|
generally used to specify which domain alert is related to. (templated) |
|
:type entity: str |
|
:param # Source field of the alert. Default value is |
|
IP address of the incoming request. |
|
:type # str |
|
:param priority: Priority level of the alert. Default value is P3. (templated) |
|
:type priority: str |
|
:param user: Display name of the request owner. |
|
:type user: str |
|
:param note: Additional note that will be added while creating the alert. (templated) |
|
:type note: str |
|
""" |
|
|
|
template_fields = ("message", "alias", "description", "entity", "priority", "note") |
|
|
|
# pylint: disable=too-many-arguments |
|
@apply_defaults |
|
def __init__( |
|
self, |
|
*, |
|
message: str, |
|
opsgenie_conn_id: str = "opsgenie_default", |
|
alias: Optional[str] = None, |
|
description: Optional[str] = None, |
|
responders: Optional[List[dict]] = None, |
|
visible_to: Optional[List[dict]] = None, |
|
actions: Optional[List[str]] = None, |
|
tags: Optional[List[str]] = None, |
|
details: Optional[dict] = None, |
|
entity: Optional[str] = None, |
|
# Optional[str] = None, |
|
priority: Optional[str] = None, |
|
user: Optional[str] = None, |
|
note: Optional[str] = None, |
|
**kwargs, |
|
) -> None: |
|
super().__init__(**kwargs) |
|
|
|
self.message = message |
|
self.opsgenie_conn_id = opsgenie_conn_id |
|
self.alias = alias |
|
self.description = description |
|
self.responders = responders |
|
self.visible_to = visible_to |
|
self.actions = actions |
|
self.tags = tags |
|
self.details = details |
|
self.entity = entity |
|
self.source = source |
|
self.priority = priority |
|
self.user = user |
|
self.note = note |
|
self.hook: Optional[OpsgenieAlertHook] = None |
|
|
|
def _build_opsgenie_payload(self) -> Dict[str, Any]: |
|
""" |
|
Construct the Opsgenie JSON payload. All relevant parameters are combined here |
|
to a valid Opsgenie JSON payload. |
|
|
|
:return: Opsgenie payload (dict) to send |
|
""" |
|
payload = {} |
|
|
|
for key in [ |
|
"message", |
|
"alias", |
|
"description", |
|
"responders", |
|
"visible_to", |
|
"actions", |
|
"tags", |
|
"details", |
|
"entity", |
|
"source", |
|
"priority", |
|
"user", |
|
"note", |
|
]: |
|
val = getattr(self, key) |
|
if val: |
|
payload[key] = val |
|
return payload |
|
|
|
def execute(self, context) -> None: |
|
"""Call the OpsgenieAlertHook to post message""" |
|
self.hook = OpsgenieAlertHook(self.opsgenie_conn_id) |
|
self.hook.execute(self._build_opsgenie_payload())
|
|
|