PagerDuty connects to your monitoring systems so that you can collect events, surface what's important, and resolve critical issues to proactively manage your uptime.
This document provides information about the PagerDuty connector, which facilitates automated interactions, with a PagerDuty server using FortiSOAR™ playbooks. Add the PagerDuty connector as a step in FortiSOAR™ playbooks and perform automated operations, such as listing teams, users, and notifications configured in PagerDuty and retrieving user details and notification rules from PagerDuty.
Connector Version: 2.0.1
FortiSOAR™ Version Tested on: 7.2.1-1021
Authored By: Fortinet
Certified: Yes
Following enhancements have been made in the PagerDuty Connector in version 2.0.1:
Note: The configuration parameters for the PagerDuty Connector in version 2.0.0 and later are is different from the earlier versions, therefore, in this case, the connector configurations of the versions earlier than 2.0.0 are unavailable and you require to reconfigure this connector.
Use the Content Hub to install the connector. For the detailed procedure to install a connector, click here.
You can also use the following yum command as a root user to install connectors from an SSH session:
yum install cyops-connector-pagerduty
For the procedure to configure a connector, click here.
In FortiSOAR™, on the Content Hub (or Connector Store) page, click the Manage tab, and then click the PagerDuty connector card. On the connector popup, click the Configurations tab to enter the required configuration details.
| Parameter | Description |
|---|---|
| Server | URL of the PagerDuty server to which you will connect and perform the automated operations. |
| API Key | API key that is configured for your account to access the PagerDuty server. |
| Integration Key | Integration key (service key) that is used to access the PagerDuty API. |
| Service | Name of the service in which you want to create the incident in PagerDuty. |
| Escalation Policy | Name of the Escalation Policy with which you want to bound the incident created in PagerDuty. |
| Verify SSL | Specifies whether the SSL certificate for the server is to be verified or not. Defaults to True. |
The following automated operations can be included in playbooks, and you can also use the annotations to access operations:
| Function | Description | Annotation and Category |
|---|---|---|
| Get User Details | Retrieves details for an existing user from your PagerDuty account based on the user ID you have specified. | get_user_info Investigation |
| Get User Notification Rules | Retrieves details for an existing user's notification rule from your PagerDuty account based on the user ID and notification rule ID you have specified. | get_notification Investigation |
| List Notifications | Retrieves a list of notifications configured in your PagerDuty account based on the notification type and date range you have specified. | get_notification Investigation |
| List Teams | Retrieves a list of all teams or specific teams configured in your PagerDuty account based on the input parameters you have specified. | search_team Investigation |
| List Users | Retrieves a list of all users or specific users configured in your PagerDuty account based on the input parameters you have specified. | list_users Investigation |
| Create Incident | Creates an incident in your PagerDuty account based on the input parameters you have specified. | create_incident Investigation |
| Send Event | Sends an event from your PagerDuty account as an alert to report a new or ongoing problem. The event is sent based on the input parameters you have specified. | send_event Investigation |
| Update Event | Updates an existing event or alert in your PagerDuty account to report a new or ongoing problem. The event is sent based on the input parameters you have specified. | update_event Investigation |
| Parameter | Description |
|---|---|
| User ID | The ID of the user whose details you want to retrieve from your PagerDuty account. |
The JSON output contains details of the specified user such as ID, notification rules, and email address, retrieved from your PagerDuty account, based on the user ID you have specified.
The output contains the following populated JSON schema:
{
"user": {
"job_title": "",
"time_zone": "",
"email": "",
"contact_methods": [
{
"summary": "",
"type": "",
"id": "",
"self": "",
"html_url": ""
}
],
"notification_rules": [
{
"start_delay_in_minutes": "",
"created_at": "",
"type": "",
"contact_method": {
"summary": "",
"type": "",
"id": "",
"self": "",
"html_url": ""
},
"id": "",
"urgency": ""
}
],
"avatar_url": "",
"description": "",
"summary": "",
"role": "",
"html_url": "",
"name": "",
"teams": [
{
"summary": "",
"type": "",
"id": "",
"self": "",
"html_url": ""
}
],
"type": "",
"invitation_sent": "",
"id": "",
"self": "",
"color": ""
}
}
| Parameter | Description |
|---|---|
| User ID | The ID of the user whose notification rules you want to retrieve from your PagerDuty account. |
| Notification Rule ID | The ID of the notification rules for which you want to retrieve details from your PagerDuty account. |
The JSON output contains details of the specified notification rule such as notification rule name and contact methods, retrieved from your PagerDuty account, based on the user ID and notification rule ID you have specified.
The output contains the following populated JSON schema:
{
"notification_rule": {
"start_delay_in_minutes": "",
"summary": "",
"urgency": "",
"html_url": "",
"type": "",
"contact_method": {
"summary": "",
"type": "",
"id": "",
"self": "",
"html_url": ""
},
"id": "",
"self": "",
"created_at": ""
}
}
| Parameter | Description |
|---|---|
| Notification Type | Type of notification for which you want to retrieve details from your PagerDuty account. You can choose from the following options: SMS Notification, Email Notification, Phone Notification, or Push Notification. |
| Since | Start date and time from when you want to retrieve information about the specified notification type from your PagerDuty account. |
| Until | End date and time till when you want to retrieve information about the specified notification type from your PagerDuty account. |
| Limit | (Optional) Specify the maximum number of results this operation should return, per page, in the response. |
| Offset | (Optional) Index of the first item to be returned by this operation. This parameter is useful if you want to get a subset of records, say notifications starting from the 10th notification. By default, this is set as 0. |
| Total | (Optional) Select this option, i.e., set it to 'True' to populate the 'Total' field in the pagination responses with the total number of records that are fetched by this operation. By default, this option is cleared, i.e., set to 'False', i.e., the 'Total' field in pagination responses is not populated so as to achieve the fastest possible response times. |
The JSON output contains details of the specified notification type such as the address to which the notification is sent and a summary of the notification, retrieved from your PagerDuty account, based on the notification type and date range you have specified.
The output contains the following populated JSON schema:
{
"notifications": [
{
"type": "]",
"started_at": "",
"id": "",
"address": "",
"user": {
"summary": "",
"type": "",
"id": "",
"self": "",
"html_url": ""
}
},
{
"type": "",
"started_at": "",
"id": "",
"address": "",
"user": {
"summary": "",
"type": "",
"id": "",
"self": "",
"html_url": ""
}
}
]
}
Note: All the input parameters are optional. However, if you do not specify any parameter, then no filter criterion is applied, and an unfiltered list (of teams) is returned.
| Parameter | Description |
|---|---|
| Limit | (Optional) Specify the maximum number of results this operation should return, per page, in the response. |
| Offset | (Optional) Index of the first item to be returned by this operation. This parameter is useful if you want to get a subset of records, say teams starting from the 10th team. By default, this is set as 0. |
| Query | (Optional) Filters the result, showing only the tags whose labels match the query. |
| Total | (Optional) Select this option, i.e., set it to 'True' to populate the 'Total' field in the pagination responses with the total number of records that are fetched by this operation. By default, this option is cleared, i.e., set to 'False', i.e., the 'Total' field in pagination responses is not populated so as to achieve the fastest possible response times. |
The JSON output contains details such as ID, name, and type, retrieved from the PagerDuty server, of all the teams configured in your PagerDuty account.
The output contains the following populated JSON schema:
{
"teams": [
{
"id": "",
"name": "",
"description": "",
"type": "",
"summary": "",
"self": "",
"html_url": "",
"default_role": "",
"parent": ""
}
],
"limit": "",
"offset": "",
"total": "",
"more": ""
}
Note: All the input parameters are optional. However, if you do not specify any parameter, then no filter criterion is applied, and an unfiltered list (of users) is returned.
| Parameter | Description |
|---|---|
| Limit | (Optional) Specify the maximum number of results this operation should return, per page, in the response. |
| Offset | (Optional) Index of the first item to be returned by this operation. This parameter is useful if you want to get a subset of records, say users starting from the 10th user. By default, this is set as 0. |
| Query | (Optional) Filters the result, showing only the tags whose labels match the query. |
| Total | (Optional) Select this option, i.e., set it to 'True' to populate the 'Total' field in the pagination responses with the total number of records that are fetched by this operation. By default, this option is cleared, i.e., set to 'False', i.e., the 'Total' field in pagination responses is not populated so as to achieve the fastest possible response times. |
| Include | (Optional) Select or specify an array of additional models that you want to include in the response of this operation. |
| Team IDs | (Optional) Filters the result to include only those return results that relate to the teams that you have specified using an array of team IDs. Note: To be able to use this filter, your PagerDuty account must have 'Teams' capabilities. |
The JSON output contains details such as ID, summary, and job title, retrieved from the PagerDuty server, of all the users, configured in your PagerDuty account.
The output contains the following populated JSON schema:
{
"users": [
{
"name": "",
"email": "",
"time_zone": "",
"color": "",
"avatar_url": "",
"billed": "",
"role": "",
"description": "",
"invitation_sent": "",
"job_title": "",
"teams": [],
"contact_methods": [
{
"id": "",
"type": "",
"summary": "",
"self": "",
"html_url": ""
}
],
"notification_rules": [
{
"id": "",
"type": "",
"summary": "",
"self": "",
"html_url": ""
}
],
"coordinated_incidents": [],
"id": "",
"type": "",
"summary": "",
"self": "",
"html_url": ""
}
],
"limit": "",
"offset": "",
"total": "",
"more": ""
}
| Parameter | Description |
|---|---|
| From | Email address of the user who is creating the incident in PagerDuty. |
| Title | Title of the incident to be created in PagerDuty. |
| Description | Description of the incident to be created in PagerDuty. |
| Service | Name of the service under which the incident is to be created in PagerDuty. |
| Priority | Priority of the incident to be created in PagerDuty. |
| Incident Key | (Optional) The Incident Creation API allows you to pass a unique incident key to identify an incident. If you do not provide an incident key, then a unique incident key is generated. |
The JSON output contains details, such as ID, name, priority, and impacted service, of the incident created in your PagerDuty account, based on the input parameters you have specified.
The output contains the following populated JSON schema:
{
"incident": {
"status": "",
"first_trigger_log_entry": {
"summary": "",
"type": "",
"id": "",
"self": "",
"html_url": ""
},
"priority": {
"summary": "",
"type": "",
"id": "",
"self": "",
"html_url": ""
},
"title": "",
"assignments": [
{
"at": "",
"assignee": {
"summary": "",
"type": "",
"id": "",
"self": "",
"html_url": ""
}
}
],
"html_url": "",
"last_status_change_by": {
"summary": "",
"type": "",
"id": "",
"self": "",
"html_url": ""
},
"incident_number": "",
"last_status_change_at": "",
"summary": "",
"urgency": "",
"service": {
"summary": "",
"type": "",
"id": "",
"self": "",
"html_url": ""
},
"incident_key": "",
"type": "",
"teams": [
{
"summary": "",
"type": "",
"id": "",
"self": "",
"html_url": ""
}
],
"id": "",
"self": "",
"created_at": "",
"escalation_policy": {
"summary": "",
"type": "",
"id": "",
"self": "",
"html_url": ""
}
}
}
| Parameter | Description |
|---|---|
| Summary | Summary of the event, which is used to generate the summaries or titles of any associated alerts. |
| Source | The unique location of the affected system, preferably a hostname, FQDN, or the complete link. |
| Severity | Perceived severity of the status of the event that is being sent with respect to the affected system. You can choose from the following options: Critical, Error, Warning, or Info. |
| Timestamp | (Optional) Datetime at which the emitting tool detected or generated the event. |
| Component | (Optional) Component of the source machine that is responsible for the event. For example mysql or eth0. |
| Group | (Optional) Group of the component, i.e., the logical grouping of components of a service. For example app-stack. |
| Class | (Optional) Class or type of event. |
The output contains the following populated JSON schema:
{
"message": "",
"dedup_key": "",
"status": ""
}
| Parameter | Description |
|---|---|
| Event Action | The action of the event that you want to update. You can choose from the following options: Trigger, Acknowledge, or Resolve |
| Deduplication Key | Deduplication key for correlating triggers and resolves. The maximum allowable length of this parameter is 255 characters. |
| Summary | Summary of the event, which is used to generate the summaries or titles of any associated alerts. |
| Source | The unique location of the affected system, preferably a hostname, FQDN, or the complete link. |
| Severity | Perceived severity of the status of the event that is being updated with respect to the affected system. You can choose from the following options: Critical, Error, Warning, or Info. |
| Timestamp | (Optional) Datetime at which the emitting tool updated the event. |
| Component | (Optional) Component of the source machine that is responsible for the event. For example mysql or eth0. |
| Group | (Optional) Group of the component, i.e., the logical grouping of components of a service. For example app-stack. |
| Class | (Optional) Class or type of event. |
The output contains the following populated JSON schema:
{
"message": "",
"dedup_key": "",
"status": ""
}
The Sample - PagerDuty - 2.0.1 playbook collection comes bundled with the PagerDuty connector. This playbook contains steps using which you can perform all supported actions. You can see the bundled playbooks in the Automation > Playbooks section in FortiSOAR™ after importing the PagerDuty connector.
Note: If you are planning to use any of the sample playbooks in your environment, ensure that you clone those playbooks and move them to a different collection since the sample playbook collection gets deleted during connector upgrade and delete.
PagerDuty connects to your monitoring systems so that you can collect events, surface what's important, and resolve critical issues to proactively manage your uptime.
This document provides information about the PagerDuty connector, which facilitates automated interactions, with a PagerDuty server using FortiSOAR™ playbooks. Add the PagerDuty connector as a step in FortiSOAR™ playbooks and perform automated operations, such as listing teams, users, and notifications configured in PagerDuty and retrieving user details and notification rules from PagerDuty.
Connector Version: 2.0.1
FortiSOAR™ Version Tested on: 7.2.1-1021
Authored By: Fortinet
Certified: Yes
Following enhancements have been made in the PagerDuty Connector in version 2.0.1:
Note: The configuration parameters for the PagerDuty Connector in version 2.0.0 and later are is different from the earlier versions, therefore, in this case, the connector configurations of the versions earlier than 2.0.0 are unavailable and you require to reconfigure this connector.
Use the Content Hub to install the connector. For the detailed procedure to install a connector, click here.
You can also use the following yum command as a root user to install connectors from an SSH session:
yum install cyops-connector-pagerduty
For the procedure to configure a connector, click here.
In FortiSOAR™, on the Content Hub (or Connector Store) page, click the Manage tab, and then click the PagerDuty connector card. On the connector popup, click the Configurations tab to enter the required configuration details.
| Parameter | Description |
|---|---|
| Server | URL of the PagerDuty server to which you will connect and perform the automated operations. |
| API Key | API key that is configured for your account to access the PagerDuty server. |
| Integration Key | Integration key (service key) that is used to access the PagerDuty API. |
| Service | Name of the service in which you want to create the incident in PagerDuty. |
| Escalation Policy | Name of the Escalation Policy with which you want to bound the incident created in PagerDuty. |
| Verify SSL | Specifies whether the SSL certificate for the server is to be verified or not. Defaults to True. |
The following automated operations can be included in playbooks, and you can also use the annotations to access operations:
| Function | Description | Annotation and Category |
|---|---|---|
| Get User Details | Retrieves details for an existing user from your PagerDuty account based on the user ID you have specified. | get_user_info Investigation |
| Get User Notification Rules | Retrieves details for an existing user's notification rule from your PagerDuty account based on the user ID and notification rule ID you have specified. | get_notification Investigation |
| List Notifications | Retrieves a list of notifications configured in your PagerDuty account based on the notification type and date range you have specified. | get_notification Investigation |
| List Teams | Retrieves a list of all teams or specific teams configured in your PagerDuty account based on the input parameters you have specified. | search_team Investigation |
| List Users | Retrieves a list of all users or specific users configured in your PagerDuty account based on the input parameters you have specified. | list_users Investigation |
| Create Incident | Creates an incident in your PagerDuty account based on the input parameters you have specified. | create_incident Investigation |
| Send Event | Sends an event from your PagerDuty account as an alert to report a new or ongoing problem. The event is sent based on the input parameters you have specified. | send_event Investigation |
| Update Event | Updates an existing event or alert in your PagerDuty account to report a new or ongoing problem. The event is sent based on the input parameters you have specified. | update_event Investigation |
| Parameter | Description |
|---|---|
| User ID | The ID of the user whose details you want to retrieve from your PagerDuty account. |
The JSON output contains details of the specified user such as ID, notification rules, and email address, retrieved from your PagerDuty account, based on the user ID you have specified.
The output contains the following populated JSON schema:
{
"user": {
"job_title": "",
"time_zone": "",
"email": "",
"contact_methods": [
{
"summary": "",
"type": "",
"id": "",
"self": "",
"html_url": ""
}
],
"notification_rules": [
{
"start_delay_in_minutes": "",
"created_at": "",
"type": "",
"contact_method": {
"summary": "",
"type": "",
"id": "",
"self": "",
"html_url": ""
},
"id": "",
"urgency": ""
}
],
"avatar_url": "",
"description": "",
"summary": "",
"role": "",
"html_url": "",
"name": "",
"teams": [
{
"summary": "",
"type": "",
"id": "",
"self": "",
"html_url": ""
}
],
"type": "",
"invitation_sent": "",
"id": "",
"self": "",
"color": ""
}
}
| Parameter | Description |
|---|---|
| User ID | The ID of the user whose notification rules you want to retrieve from your PagerDuty account. |
| Notification Rule ID | The ID of the notification rules for which you want to retrieve details from your PagerDuty account. |
The JSON output contains details of the specified notification rule such as notification rule name and contact methods, retrieved from your PagerDuty account, based on the user ID and notification rule ID you have specified.
The output contains the following populated JSON schema:
{
"notification_rule": {
"start_delay_in_minutes": "",
"summary": "",
"urgency": "",
"html_url": "",
"type": "",
"contact_method": {
"summary": "",
"type": "",
"id": "",
"self": "",
"html_url": ""
},
"id": "",
"self": "",
"created_at": ""
}
}
| Parameter | Description |
|---|---|
| Notification Type | Type of notification for which you want to retrieve details from your PagerDuty account. You can choose from the following options: SMS Notification, Email Notification, Phone Notification, or Push Notification. |
| Since | Start date and time from when you want to retrieve information about the specified notification type from your PagerDuty account. |
| Until | End date and time till when you want to retrieve information about the specified notification type from your PagerDuty account. |
| Limit | (Optional) Specify the maximum number of results this operation should return, per page, in the response. |
| Offset | (Optional) Index of the first item to be returned by this operation. This parameter is useful if you want to get a subset of records, say notifications starting from the 10th notification. By default, this is set as 0. |
| Total | (Optional) Select this option, i.e., set it to 'True' to populate the 'Total' field in the pagination responses with the total number of records that are fetched by this operation. By default, this option is cleared, i.e., set to 'False', i.e., the 'Total' field in pagination responses is not populated so as to achieve the fastest possible response times. |
The JSON output contains details of the specified notification type such as the address to which the notification is sent and a summary of the notification, retrieved from your PagerDuty account, based on the notification type and date range you have specified.
The output contains the following populated JSON schema:
{
"notifications": [
{
"type": "]",
"started_at": "",
"id": "",
"address": "",
"user": {
"summary": "",
"type": "",
"id": "",
"self": "",
"html_url": ""
}
},
{
"type": "",
"started_at": "",
"id": "",
"address": "",
"user": {
"summary": "",
"type": "",
"id": "",
"self": "",
"html_url": ""
}
}
]
}
Note: All the input parameters are optional. However, if you do not specify any parameter, then no filter criterion is applied, and an unfiltered list (of teams) is returned.
| Parameter | Description |
|---|---|
| Limit | (Optional) Specify the maximum number of results this operation should return, per page, in the response. |
| Offset | (Optional) Index of the first item to be returned by this operation. This parameter is useful if you want to get a subset of records, say teams starting from the 10th team. By default, this is set as 0. |
| Query | (Optional) Filters the result, showing only the tags whose labels match the query. |
| Total | (Optional) Select this option, i.e., set it to 'True' to populate the 'Total' field in the pagination responses with the total number of records that are fetched by this operation. By default, this option is cleared, i.e., set to 'False', i.e., the 'Total' field in pagination responses is not populated so as to achieve the fastest possible response times. |
The JSON output contains details such as ID, name, and type, retrieved from the PagerDuty server, of all the teams configured in your PagerDuty account.
The output contains the following populated JSON schema:
{
"teams": [
{
"id": "",
"name": "",
"description": "",
"type": "",
"summary": "",
"self": "",
"html_url": "",
"default_role": "",
"parent": ""
}
],
"limit": "",
"offset": "",
"total": "",
"more": ""
}
Note: All the input parameters are optional. However, if you do not specify any parameter, then no filter criterion is applied, and an unfiltered list (of users) is returned.
| Parameter | Description |
|---|---|
| Limit | (Optional) Specify the maximum number of results this operation should return, per page, in the response. |
| Offset | (Optional) Index of the first item to be returned by this operation. This parameter is useful if you want to get a subset of records, say users starting from the 10th user. By default, this is set as 0. |
| Query | (Optional) Filters the result, showing only the tags whose labels match the query. |
| Total | (Optional) Select this option, i.e., set it to 'True' to populate the 'Total' field in the pagination responses with the total number of records that are fetched by this operation. By default, this option is cleared, i.e., set to 'False', i.e., the 'Total' field in pagination responses is not populated so as to achieve the fastest possible response times. |
| Include | (Optional) Select or specify an array of additional models that you want to include in the response of this operation. |
| Team IDs | (Optional) Filters the result to include only those return results that relate to the teams that you have specified using an array of team IDs. Note: To be able to use this filter, your PagerDuty account must have 'Teams' capabilities. |
The JSON output contains details such as ID, summary, and job title, retrieved from the PagerDuty server, of all the users, configured in your PagerDuty account.
The output contains the following populated JSON schema:
{
"users": [
{
"name": "",
"email": "",
"time_zone": "",
"color": "",
"avatar_url": "",
"billed": "",
"role": "",
"description": "",
"invitation_sent": "",
"job_title": "",
"teams": [],
"contact_methods": [
{
"id": "",
"type": "",
"summary": "",
"self": "",
"html_url": ""
}
],
"notification_rules": [
{
"id": "",
"type": "",
"summary": "",
"self": "",
"html_url": ""
}
],
"coordinated_incidents": [],
"id": "",
"type": "",
"summary": "",
"self": "",
"html_url": ""
}
],
"limit": "",
"offset": "",
"total": "",
"more": ""
}
| Parameter | Description |
|---|---|
| From | Email address of the user who is creating the incident in PagerDuty. |
| Title | Title of the incident to be created in PagerDuty. |
| Description | Description of the incident to be created in PagerDuty. |
| Service | Name of the service under which the incident is to be created in PagerDuty. |
| Priority | Priority of the incident to be created in PagerDuty. |
| Incident Key | (Optional) The Incident Creation API allows you to pass a unique incident key to identify an incident. If you do not provide an incident key, then a unique incident key is generated. |
The JSON output contains details, such as ID, name, priority, and impacted service, of the incident created in your PagerDuty account, based on the input parameters you have specified.
The output contains the following populated JSON schema:
{
"incident": {
"status": "",
"first_trigger_log_entry": {
"summary": "",
"type": "",
"id": "",
"self": "",
"html_url": ""
},
"priority": {
"summary": "",
"type": "",
"id": "",
"self": "",
"html_url": ""
},
"title": "",
"assignments": [
{
"at": "",
"assignee": {
"summary": "",
"type": "",
"id": "",
"self": "",
"html_url": ""
}
}
],
"html_url": "",
"last_status_change_by": {
"summary": "",
"type": "",
"id": "",
"self": "",
"html_url": ""
},
"incident_number": "",
"last_status_change_at": "",
"summary": "",
"urgency": "",
"service": {
"summary": "",
"type": "",
"id": "",
"self": "",
"html_url": ""
},
"incident_key": "",
"type": "",
"teams": [
{
"summary": "",
"type": "",
"id": "",
"self": "",
"html_url": ""
}
],
"id": "",
"self": "",
"created_at": "",
"escalation_policy": {
"summary": "",
"type": "",
"id": "",
"self": "",
"html_url": ""
}
}
}
| Parameter | Description |
|---|---|
| Summary | Summary of the event, which is used to generate the summaries or titles of any associated alerts. |
| Source | The unique location of the affected system, preferably a hostname, FQDN, or the complete link. |
| Severity | Perceived severity of the status of the event that is being sent with respect to the affected system. You can choose from the following options: Critical, Error, Warning, or Info. |
| Timestamp | (Optional) Datetime at which the emitting tool detected or generated the event. |
| Component | (Optional) Component of the source machine that is responsible for the event. For example mysql or eth0. |
| Group | (Optional) Group of the component, i.e., the logical grouping of components of a service. For example app-stack. |
| Class | (Optional) Class or type of event. |
The output contains the following populated JSON schema:
{
"message": "",
"dedup_key": "",
"status": ""
}
| Parameter | Description |
|---|---|
| Event Action | The action of the event that you want to update. You can choose from the following options: Trigger, Acknowledge, or Resolve |
| Deduplication Key | Deduplication key for correlating triggers and resolves. The maximum allowable length of this parameter is 255 characters. |
| Summary | Summary of the event, which is used to generate the summaries or titles of any associated alerts. |
| Source | The unique location of the affected system, preferably a hostname, FQDN, or the complete link. |
| Severity | Perceived severity of the status of the event that is being updated with respect to the affected system. You can choose from the following options: Critical, Error, Warning, or Info. |
| Timestamp | (Optional) Datetime at which the emitting tool updated the event. |
| Component | (Optional) Component of the source machine that is responsible for the event. For example mysql or eth0. |
| Group | (Optional) Group of the component, i.e., the logical grouping of components of a service. For example app-stack. |
| Class | (Optional) Class or type of event. |
The output contains the following populated JSON schema:
{
"message": "",
"dedup_key": "",
"status": ""
}
The Sample - PagerDuty - 2.0.1 playbook collection comes bundled with the PagerDuty connector. This playbook contains steps using which you can perform all supported actions. You can see the bundled playbooks in the Automation > Playbooks section in FortiSOAR™ after importing the PagerDuty connector.
Note: If you are planning to use any of the sample playbooks in your environment, ensure that you clone those playbooks and move them to a different collection since the sample playbook collection gets deleted during connector upgrade and delete.