Get started with Jira Service Management for admins
Your first stop for learning how to get started with Jira Service Management.
If you’re a customer who shifted your operations from Opsgenie to Jira Service Management, adding new instances of this integration isn’t possible in Jira Service Management. You can only edit the integrations that originally shifted from Opsgenie.
Use Jira Service Management's SaltStack Integration to create or close alerts in Jira Service Management according to the Salt states or events. Jira Service Management determines the right people to notify based on on-call schedules– notifies via email, text messages (SMS), phone calls, iOS & Android push notifications, and escalates alerts until the alert is acknowledged or closed.
Alerts are created/closed according to the Salt States.
Alerts are created/closed according to the Salt's Event Reactor.
To edit a SaltStack integration in Jira Service Management, complete the following steps:
Go to your team’s operations page.
On the left navigation panel, select Integrations.
Search for your SaltStack integration.
Edit the integration settings and rules as necessary.
Use the instructions in this section if applicable.
Download the Opsgenie's Execution Module.
If using Opsgenie from another domain(EU, sandbox etc.) update API_ENDPOINT variable at Opsgenie script. Default configured as (https://api.opsgenie.com).
Move the module into a directory named _modules at the root of the Salt fileserver.
Download the Opsgenie’s State Module.
Move the module into a directory named _states at the root of the Salt fileserver.
Apply these module changes to the minions by running command:
Shell
1
salt '*' saltutil.sync_all
After the initial configuration Opsgenie’s state module can be used with SaLt State files(SLS).
Let's walk through an example use case which creates/closes alerts according to the disk usage of the minion. Create a file named disk.sls located at the root of the Salt fileserver.
YAML
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
used_space:
disk.status:
- name: /
- maximum: 79%
- minimum: 10%
opsgenie_create_action_sender:
opsgenie.create_alert:
- api_key: XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX
- reason: 'Disk capacity is out of designated range.'
- name: disk.status
- onfail:
- disk: used_space
opsgenie_close_action_sender:
opsgenie.close_alert:
- api_key: XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX
- name: disk.status
- require:
- disk: used_space
After the creation of the Salt State file, let's try it with the below command.
Shell
1
salt salt-minion state.apply disk
We've used the SaltStack's Requisites (onfail, require) for triggering Opsgenie’s state module.
After successful configuration, an alert is created/closed in Jira Service Management.
Field | Mandatory | Description |
---|---|---|
api_key | true | It's the API Key you've copied while adding integration in Jira Service Management. |
reason | true | It will be used as alert's default message in Jira Service Management. |
name | false | It will be used as alert's alias. If you want to use the close functionality you must provide name field for both states like in this case. |
After initial configuration, Opsgenie’s execution module can be used with Salt's Event Reactor.
Let's walk through an example use-case which creates/closes alerts according to the events sent to the Salt's event bus.
If using Salt's Event Reactor for the first time, append the below configuration into the configuration for the Salt master which is located at
/etc/salt/master
by default. If familiar with Salt's Event Reactor, edit the existing reactor configuration as desired.
YAML
1
2
3
reactor:
- 'og-tag':
- /srv/salt/reactor/og-reactor.sls
Create the Salt State file
og-reactor.sls
located at /srv/salt/reactor/ and paste the YAML content below.
YAML
1
2
3
4
5
6
7
8
opsgenie_event_poster:
local.opsgenie.post_data:
- tgt: 'salt-minion'
- kwarg:
name: event.reactor
api_key: XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX
reason: {{ data['data']['reason'] }}
action_type: Create
Send an event with the custom tag
'og-tag'
using the command below.
Shell
1
salt-call event.send 'og-tag' '{"reason" : "Overheating CPU!"}'
If the configuration is successful, an alert is created/closed in Jira Service Management.
Field | Mandatory | Description |
---|---|---|
api_key | true | It's the API Key you've copied while adding integration in Jira Service Management. |
reason | true | It will be used as alert's default message in Jira Service Management. |
name | false | It will be used as alert's alias. If you want to use the close functionality you must provide name field for both states like in this case. |
action_type | true | Jira Service Management supports the default values Create/Close for action_type. You can customize this field with Opsgenie’s custom actions for other purposes like adding notes or acknowledging alerts. |
JSON
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"username": "root",
"kernel": "Linux",
"uuid": "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX",
"name": "event.reactor",
"kernelRelease": "4.12.13-300.fc26.x86_64",
"saltVersion": "2017.7.1",
"fqdn": "localhost.localdomain",
"saltPath": "/usr/lib/python2.7/site-packages/salt",
"cpuArch": "x86_64",
"reason": "Overheating CPU!",
"actionType": "Create",
"host": "localhost",
"master": "127.0.0.1",
"os": "Fedora",
"id": "salt-minion",
"cpuModel": "Intel(R) Core(TM) i7-4770HQ CPU @ 2.20GHz"
}
Alert created in chapter Integrating Opsgenie with Salt States:
Alert created in chapter Integrating Opsgenie with Salt's Event Reactor:
Was this helpful?