Skip to main content
Get Rule Group Model Mapping
curl --request POST \
  --url https://api.coralogix.com/mgmt/openapi/5/parsing-rules/mapping/v1 \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "creator": "<string>",
  "description": "<string>",
  "enabled": true,
  "hidden": true,
  "name": "<string>",
  "order": 123,
  "ruleMatchers": [
    {
      "applicationName": {
        "value": "<string>"
      }
    }
  ],
  "ruleSubgroups": [
    {
      "enabled": true,
      "order": 123,
      "rules": [
        {
          "description": "<string>",
          "enabled": true,
          "name": "<string>",
          "order": 123,
          "parameters": {
            "allowParameters": {
              "keepBlockedLogs": true,
              "rule": "<string>"
            }
          },
          "sourceField": "<string>"
        }
      ]
    }
  ]
}
'
{
  "ruleDefinition": {}
}

Documentation Index

Fetch the complete documentation index at: https://docs.coralogix.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key authentication

Body

application/json

Request for retrieving the model mapping for a parsing rule group.

creator
string

Creator.

description
string

Human-readable description.

enabled
boolean

Whether this resource is enabled.

hidden
boolean

Whether to hide this rule group from the standard view.

name
string

Display name.

order
integer<int64>

Sort order.

ruleMatchers
object[]

List of rule matchers that determine which logs this group applies to.

ruleSubgroups
object[]

List of rule subgroups defining the ordered set of rules in this group.

Response

Response containing the model mapping for a parsing rule group.

ruleDefinition
object

The rule definition.