Properties
| Name | Type | Description |
|---|---|---|
| created | object | |
| host | string | The hostname the rule will be applied to. |
| id | object | |
| inclusive | boolean | Whether the rule includes or excludes traffic from being measured. |
| is_paused | boolean | Whether the rule is paused or not. |
| paths | array | The paths the rule will be applied to. |
| priority | number |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/rum_rule",
"title": "rum_rule",
"properties": {
"created": {
"$ref": "#/components/schemas/rum_timestamp"
},
"host": {
"description": "The hostname the rule will be applied to.",
"example": "example.com",
"type": "string"
},
"id": {
"$ref": "#/components/schemas/rum_rule_identifier"
},
"inclusive": {
"description": "Whether the rule includes or excludes traffic from being measured.",
"example": true,
"type": "boolean"
},
"is_paused": {
"description": "Whether the rule is paused or not.",
"example": false,
"type": "boolean"
},
"paths": {
"description": "The paths the rule will be applied to.",
"example": [
"*"
],
"items": {
"type": "string"
},
"type": "array"
},
"priority": {
"example": 1000,
"type": "number"
}
},
"type": "object"
}