content/kapacitor/v1/reference/event_handlers/victorops.md
VictorOps is an incident management platform that provides observability, collaboration, & real-time alerting. Kapacitor can be configured to send alert messages to VictorOps.
Configuration as well as default option values for the VictorOps
event handler are set in your kapacitor.conf.
Below is an example configuration:
[victorops]
enabled = true
api-key = "xxxx"
routing-key = "xxxx"
url = "https://alert.victorops.com/integrations/generic/20131114/alert"
json-data = false
global = false
enabledSet to true to enable the VictorOps event handler.
api-keyYour VictorOps API Key.
routing-keyDefault VictorOps routing key, can be overridden per alert.
urlThe VictorOps API URL. This should not need to be changed.
json-dataUse JSON for the "data" field.
New VictorOps installations will want to set this to
trueas it makes the data that triggered the alert available within VictorOps. The default isfalsefor backwards compatibility.
globalIf true the all alerts will be sent to VictorOps without explicitly specifying VictorOps in the TICKscript. The routing key can still be overridden.
The following VictorOpas event handler options can be set in a
handler file or when using
.victorOps() in a TICKscript.
| Name | Type | Description |
|---|---|---|
| routing-key | string | The routing key of the alert event. |
id: handler-id
topic: topic-name
kind: victorops
options:
routing-key: ops_team
|alert()
// ...
.victorOps()
.routingKey('team_rocket')
To allow Kapacitor to send alerts to VictorOps, do the following:
api-key in the [victorops] section of your
kapacitor.conf.With the VictorOps event handler enabled and configured in your kapacitor.conf,
use the .victorOps() attribute in your TICKscripts to send alerts to VictorOps
or define a VictorOps handler that subscribes to a topic and sends published
alerts to VictorOps.
The examples below use the following VictorOps configuration defined in the kapacitor.conf:
[victorops]
enabled = true
api-key = "mysupersecretapikey"
routing-key = "team_rocket"
url = "https://alert.victorops.com/integrations/generic/20131114/alert"
json-data = true
global = false
The following TICKscript uses the .victorOps() event handler to send the
message, "Hey, check your CPU", to VictorOps whenever idle CPU usage drops
below 10%.
stream
|from()
.measurement('cpu')
|alert()
.crit(lambda: "usage_idle" < 10)
.message('Hey, check your CPU')
.victorOps()
.routingKey('team_rocket')
The following setup sends an alert to the cpu topic with the message,
"Hey, check your CPU".
A VictorOps handler is added that subscribes to the cpu topic and publishes
all alert messages to VictorOps using default settings defined in the kapacitor.conf.
Create a TICKscript that publishes alert messages to a topic.
The TICKscript below sends an alert message to the cpu topic any time idle
CPU usage drops below 10%.
cpu_alert.tick
stream
|from()
.measurement('cpu')
|alert()
.crit(lambda: "usage_idle" < 10)
.message('Hey, check your CPU')
.topic('cpu')
Add and enable the TICKscript:
kapacitor define cpu_alert -tick cpu_alert.tick
kapacitor enable cpu_alert
Create a handler file that subscribes to the cpu topic and uses the VictorOps
event handler to send alerts VictorOps.
victorops_cpu_handler.yaml
topic: cpu
id: victorops-cpu-alert
kind: victorops
options:
routing-key: 'team_rocket'
Add the handler:
kapacitor define-topic-handler victorops_cpu_handler.yaml