forked from keephq/keep
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: 35C4n0r <[email protected]>
- Loading branch information
Showing
7 changed files
with
539 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
--- | ||
title: "SumoLogic Provider" | ||
sidebarTitle: "SumoLogic Provider" | ||
description: "The SumoLogic provider enables webhook installations for receiving alerts in keep" | ||
--- | ||
|
||
## Overview | ||
|
||
The SumoLogic provider facilitates receiving alerts from Monitors in SumoLogic using a Webhook Connection. | ||
|
||
## Authentication Parameters | ||
|
||
- `sumoLogicAccessId`: API key for authenticating with SumoLogic's API. | ||
- `sumoLogicAccessKey`: API key for authenticating with SumoLogic's API. | ||
- `deployment`: API key for authenticating with SumoLogic's API. | ||
|
||
## Scopes | ||
|
||
- `authenticated`: Mandatory for all operations, ensures the user is authenticated. | ||
- `authorized`: Mandatory for querying incidents, ensures the user has read access. | ||
|
||
## Connecting with the Provider | ||
|
||
1. Follow the instructions [here](https://help.sumologic.com/docs/manage/security/access-keys/) to get your Access Key & Access ID | ||
2. Make sure the user has roles with the following capabilities: | ||
- `manageScheduledViews` | ||
- `manageConnections` | ||
- `manageUsersAndRoles` | ||
3. Find your `deployment` from [here](https://api.sumologic.com/docs/#section/Getting-Started/API-Endpoints), keep will automatically figure out your endpoint. | ||
|
||
## Useful Links | ||
|
||
- [SumoLogic API Documentation](https://api.sumologic.com/docs/#section/Getting-Started) | ||
- [SumoLogic Access_Keys](https://help.sumologic.com/docs/manage/security/access-keys/) | ||
- [SumoLogic Roles Management](https://help.sumologic.com/docs/manage/users-roles/roles/create-manage-roles/) | ||
- [SumoLogic Deployments](https://api.sumologic.com/docs/#section/Getting-Started/API-Endpoints) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file.
20 changes: 20 additions & 0 deletions
20
keep/providers/sumologic_provider/connection_template.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
"name": "{{Name}}", | ||
"description": "{{Description}}", | ||
"monitorType": "{{MonitorType}}", | ||
"query": "{{Query}}", | ||
"queryURL": "{{QueryURL}}", | ||
"resultsJson": "{{ResultsJson}}", | ||
"numQueryResults": "{{NumQueryResults}}", | ||
"id": "{{Id}}", | ||
"detectionMethod": "{{DetectionMethod}}", | ||
"triggerType": "{{TriggerType}}", | ||
"triggerTimeRange": "{{TriggerTimeRange}}", | ||
"triggerTime": "{{TriggerTime}}", | ||
"triggerCondition": "{{TriggerCondition}}", | ||
"triggerValue": "{{TriggerValue}}", | ||
"triggerTimeStart": "{{TriggerTimeStart}}", | ||
"triggerTimeEnd": "{{TriggerTimeEnd}}", | ||
"sourceURL": "{{SourceURL}}", | ||
"alertResponseUrl": "{{AlertResponseUrl}}" | ||
} |
Oops, something went wrong.