pagerduty
editpagerduty
editThis is a community-maintained plugin!
The PagerDuty output will send notifications based on pre-configured services
and escalation policies. Logstash can send "trigger", "acknowledge" and "resolve"
event types. In addition, you may configure custom descriptions and event details.
The only required field is the PagerDuty "Service API Key", which can be found on
the service’s web page on pagerduty.com. In the default case, the description and
event details will be populated by Logstash, using message
, timestamp
and host
data.
Synopsis
editThis plugin supports the following configuration options:
Required configuration options:
pagerduty { service_key => ... }
Available configuration options:
Setting | Input type | Required | Default value |
---|---|---|---|
No |
|
||
No |
|
||
No |
|
||
string, one of |
No |
|
|
No |
|
||
No |
|
||
Yes |
|||
No |
|
Details
edit
codec
edit- Value type is codec
-
Default value is
"plain"
The codec used for output data. Output codecs are a convenient method for encoding your data before it leaves the output, without needing a separate filter in your Logstash pipeline.
description
edit- Value type is string
-
Default value is
"Logstash event for %{host}"
Custom description
details
edit- Value type is hash
-
Default value is
{"timestamp"=>"%{@timestamp}", "message"=>"%{message}"}
The event details. These might be data from the Logstash event fields you wish to include. Tags are automatically included if detected so there is no need to explicitly add them here.
event_type
edit-
Value can be any of:
trigger
,acknowledge
,resolve
-
Default value is
"trigger"
Event type
exclude_tags
(DEPRECATED)
edit- DEPRECATED WARNING: This configuration item is deprecated and may not be available in future versions.
- Value type is array
-
Default value is
[]
Only handle events without any of these tags. Optional.
incident_key
edit- Value type is string
-
Default value is
"logstash/%{host}/%{type}"
The service key to use. You’ll need to set this up in PagerDuty beforehand.
pdurl
edit- Value type is string
-
Default value is
"https://events.pagerduty.com/generic/2010-04-15/create_event.json"
PagerDuty API URL. You shouldn’t need to change this, but is included to allow for flexibility should PagerDuty iterate the API and Logstash hasn’t been updated yet.
service_key
edit- This is a required setting.
- Value type is string
- There is no default value for this setting.
The PagerDuty Service API Key
tags
(DEPRECATED)
edit- DEPRECATED WARNING: This configuration item is deprecated and may not be available in future versions.
- Value type is array
-
Default value is
[]
Only handle events with all of these tags. Optional.
type
(DEPRECATED)
edit- DEPRECATED WARNING: This configuration item is deprecated and may not be available in future versions.
- Value type is string
-
Default value is
""
The type to act on. If a type is given, then this output will only
act on messages with the same type. See any input plugin’s type
attribute for more.
Optional.