|
|
|
@ -1,5 +1,5 @@
|
|
|
|
|
import * as AnalyticUnit from '../models/analytic_units'; |
|
|
|
|
import { HASTIC_WEBHOOK_URL, HASTIC_WEBHOOK_TYPE, HASTIC_INSTANCE_NAME } from '../config'; |
|
|
|
|
import * as config from '../config'; |
|
|
|
|
|
|
|
|
|
import axios from 'axios'; |
|
|
|
|
import * as querystring from 'querystring'; |
|
|
|
@ -17,7 +17,14 @@ export enum WebhookType {
|
|
|
|
|
MESSAGE = 'MESSAGE' |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
export declare type AnalyticMeta = { |
|
|
|
|
export type MetaInfo = { |
|
|
|
|
type: WebhookType, |
|
|
|
|
from: number, |
|
|
|
|
to: number, |
|
|
|
|
params?: any |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
export type AnalyticMeta = { |
|
|
|
|
type: WebhookType, |
|
|
|
|
analyticUnitType: string, |
|
|
|
|
analyticUnitName: string, |
|
|
|
@ -28,47 +35,124 @@ export declare type AnalyticMeta = {
|
|
|
|
|
message?: any |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
export declare type MetaInfo = { |
|
|
|
|
type: WebhookType, |
|
|
|
|
from: number, |
|
|
|
|
to: number, |
|
|
|
|
params?: any |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
export declare type Notification = { |
|
|
|
|
text: string, |
|
|
|
|
meta: MetaInfo | AnalyticMeta, |
|
|
|
|
image?: any |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
export async function sendNotification(notification: Notification) { |
|
|
|
|
if(HASTIC_WEBHOOK_URL === null) { |
|
|
|
|
console.log(`HASTIC_WEBHOOK_URL is not set, skip sending notification: ${notification.text}`); |
|
|
|
|
return; |
|
|
|
|
// TODO: split notifiers into 3 files
|
|
|
|
|
export interface Notifier { |
|
|
|
|
sendNotification(notification: Notification): Promise<void>; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// TODO: singleton
|
|
|
|
|
export function getNotifier(): Notifier { |
|
|
|
|
if(config.HASTIC_ALERT_TYPE === config.AlertTypes.WEBHOOK) { |
|
|
|
|
return new WebhookNotifier(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
notification.text += `\nInstance: ${HASTIC_INSTANCE_NAME}`; |
|
|
|
|
if(config.HASTIC_ALERT_TYPE === config.AlertTypes.ALERTMANAGER) { |
|
|
|
|
return new AlertManagerNotifier(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
throw new Error(`${config.HASTIC_ALERT_TYPE} alert type not supported`); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
class WebhookNotifier implements Notifier { |
|
|
|
|
async sendNotification(notification: Notification) { |
|
|
|
|
if(config.HASTIC_WEBHOOK_URL === null) { |
|
|
|
|
console.log(`HASTIC_WEBHOOK_URL is not set, skip sending notification: ${notification.text}`); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
notification.text += `\nInstance: ${config.HASTIC_INSTANCE_NAME}`; |
|
|
|
|
|
|
|
|
|
let data; |
|
|
|
|
if(config.HASTIC_WEBHOOK_TYPE === ContentType.JSON) { |
|
|
|
|
data = JSON.stringify(notification); |
|
|
|
|
} else if(config.HASTIC_WEBHOOK_TYPE === ContentType.URLENCODED) { |
|
|
|
|
data = querystring.stringify(notification); |
|
|
|
|
} else { |
|
|
|
|
throw new Error(`Unknown webhook type: ${config.HASTIC_WEBHOOK_TYPE}`); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// TODO: use HASTIC_WEBHOOK_SECRET
|
|
|
|
|
const options = { |
|
|
|
|
method: 'POST', |
|
|
|
|
url: config.HASTIC_WEBHOOK_URL, |
|
|
|
|
data, |
|
|
|
|
headers: { 'Content-Type': config.HASTIC_WEBHOOK_TYPE } |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
let data; |
|
|
|
|
if(HASTIC_WEBHOOK_TYPE === ContentType.JSON) { |
|
|
|
|
data = JSON.stringify(notification); |
|
|
|
|
} else if(HASTIC_WEBHOOK_TYPE === ContentType.URLENCODED) { |
|
|
|
|
data = querystring.stringify(notification); |
|
|
|
|
} else { |
|
|
|
|
throw new Error(`Unknown webhook type: ${HASTIC_WEBHOOK_TYPE}`); |
|
|
|
|
await axios(options); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
type PostableAlertLabels = { |
|
|
|
|
alertname: string; |
|
|
|
|
[key: string]: string |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
// TODO: use HASTIC_WEBHOOK_SECRET
|
|
|
|
|
const options = { |
|
|
|
|
method: 'POST', |
|
|
|
|
url: HASTIC_WEBHOOK_URL, |
|
|
|
|
data, |
|
|
|
|
headers: { 'Content-Type': HASTIC_WEBHOOK_TYPE } |
|
|
|
|
}; |
|
|
|
|
type PostableAlertAnnotations = { |
|
|
|
|
message?: string; |
|
|
|
|
summary?: string; |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
try { |
|
|
|
|
type PostableAlert = { |
|
|
|
|
labels: PostableAlertLabels, |
|
|
|
|
annotations: PostableAlertAnnotations |
|
|
|
|
generatorURL?: string, |
|
|
|
|
endsAt?: string |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
class AlertManagerNotifier implements Notifier { |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* @throws {Error} from axios if query fails |
|
|
|
|
*/ |
|
|
|
|
async sendNotification(notification: Notification) { |
|
|
|
|
if(config.HASTIC_ALERTMANAGER_URL === null) { |
|
|
|
|
console.log(`HASTIC_ALERTMANAGER_URL is not set, skip sending notification: ${notification.text}`); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
let generatorURL: string; |
|
|
|
|
let labels: PostableAlertLabels = { |
|
|
|
|
alertname: notification.meta.type, |
|
|
|
|
instance: config.HASTIC_INSTANCE_NAME |
|
|
|
|
}; |
|
|
|
|
let annotations: PostableAlertAnnotations = { |
|
|
|
|
message: notification.text |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
if(_.has(notification.meta, 'grafanaUrl')) { |
|
|
|
|
generatorURL = (notification.meta as AnalyticMeta).grafanaUrl; |
|
|
|
|
labels.alertname = (notification.meta as AnalyticMeta).analyticUnitName; |
|
|
|
|
labels.analyticUnitId = (notification.meta as AnalyticMeta).analyticUnitId; |
|
|
|
|
labels.analyticUnitType = (notification.meta as AnalyticMeta).analyticUnitType; |
|
|
|
|
annotations.message = `${(notification.meta as AnalyticMeta).message}\n${generatorURL}`; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
let alertData: PostableAlert = { |
|
|
|
|
labels, |
|
|
|
|
annotations, |
|
|
|
|
generatorURL |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
let options = { |
|
|
|
|
method: 'POST', |
|
|
|
|
url: `${config.HASTIC_ALERTMANAGER_URL}/api/v2/alerts`, |
|
|
|
|
data: JSON.stringify([alertData]), |
|
|
|
|
headers: { 'Content-Type': ContentType.JSON } |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
//first part: send start request
|
|
|
|
|
await axios(options); |
|
|
|
|
//TODO: resolve FAILURE alert only after RECOVERY event
|
|
|
|
|
//second part: send end request
|
|
|
|
|
alertData.endsAt = (new Date()).toISOString(); |
|
|
|
|
options.data = JSON.stringify([alertData]); |
|
|
|
|
await axios(options); |
|
|
|
|
} catch(err) { |
|
|
|
|
console.error(`Can't send notification to ${HASTIC_WEBHOOK_URL}. Error: ${err.message}`); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|