License
MIT License
The Sensu Slack handler is a Sensu Event Handler that sends event data to
a configured Slack channel.
Download the latest version of the slack-handler from releases,
or create an executable script from this source.
From the local path of the slack-handler repository:
go build -o /usr/local/bin/sensu-slack-handler main.go
Example Sensu Go handler definition:
slack-handler.json
{
"api_version": "core/v2",
"type": "Handler",
"metadata": {
"namespace": "default",
"name": "slack"
},
"spec": {
"type": "pipe",
"command": "sensu-slack-handler --channel '#general' --timeout 20 --username 'sensu' --webhook-url 'https://www.webhook-url-for-slack.com'",
"timeout": 30,
"filters": [
"is_incident"
]
}
}
sensuctl create -f slack-handler.json
Example Sensu Go check definition:
{
"api_version": "core/v2",
"type": "CheckConfig",
"metadata": {
"namespace": "default",
"name": "dummy-app-healthz"
},
"spec": {
"command": "check-http -u http://localhost:8080/healthz",
"subscriptions":[
"dummy"
],
"publish": true,
"interval": 10,
"handlers": [
"slack"
]
}
}
Help:
The Sensu Go Slack handler for notifying a channel
Usage:
sensu-slack-handler [flags]
Flags:
-c, --channel string The channel to post messages to (default "#general")
-h, --help help for handler-slack
-i, --icon-url string A URL to an image to use as the user avatar (default "http://s3-us-west-2.amazonaws.com/sensuapp.org/sensu.png")
-t, --timeout int The amount of seconds to wait before terminating the handler (default 10)
-u, --username string The username that messages will be sent as (default "sensu")
-w, --webhook-url string The webhook url to send messages to
Please describe the reason for reporting this asset. Our moderators will be notified and will disable the asset if it is found to be inappropriate.
×