mappings
Create Rule
Overview
- Introduction
- Playground
- Use Cases
- Key Concepts
- Support
AIOps
- AI
- Non-AI Correlation
- Deduplication
- Extraction
- Mapping
- Maintenance Windows
- Service Topology
- Workflows
Workflow Automation
- Overview
- Syntax
- Examples
Alert Evaluation Engine
- Overview
- Examples
Providers
- Overview
- Linked Providers
- Provider methods
- Supported Providers
- Adding a New Provider
Deployment
- Configuration
- Monitoring
- Authentication
- Provision
- Secret Store
- Deploy On
- Local LLM
- Specifications
Development
Keep API
- providers
- actions
- healthcheck
- topology
- alerts
- deduplications
- maintenance
- incidents
- settings
- workflows
- whoami
- pusher
- status
- rules
- preset
- enrichment
- auth
- metrics
- users
- groups
- mappings
- dashboard
- tags
Keep CLI
mappings
Create Rule
Create a new mapping rule
POST
/
mapping
{
"id": 123,
"tenant_id": "<string>",
"priority": 0,
"name": "<string>",
"description": "<string>",
"file_name": "<string>",
"created_by": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"disabled": false,
"override": true,
"condition": "<string>",
"type": "<string>",
"matchers": [
"<string>"
],
"rows": [
{}
],
"updated_by": "<string>",
"last_updated_at": "2023-11-07T05:31:56Z"
}
Authorizations
Body
application/json
Response
200
application/json
Successful Response
The response is of type object
.
{
"id": 123,
"tenant_id": "<string>",
"priority": 0,
"name": "<string>",
"description": "<string>",
"file_name": "<string>",
"created_by": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"disabled": false,
"override": true,
"condition": "<string>",
"type": "<string>",
"matchers": [
"<string>"
],
"rows": [
{}
],
"updated_by": "<string>",
"last_updated_at": "2023-11-07T05:31:56Z"
}