update_log_parsing_rule
Modify existing log parsing rules to extract and structure log data for better analysis and monitoring in New Relic.
Instructions
Update an existing log parsing rule
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| rule_id | Yes | ||
| description | No | ||
| grok | No | ||
| nrql | No | ||
| enabled | No | ||
| lucene | No | ||
| account_id | No |
Input Schema (JSON Schema)
{
"properties": {
"account_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Account Id"
},
"description": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Description"
},
"enabled": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"default": null,
"title": "Enabled"
},
"grok": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Grok"
},
"lucene": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Lucene"
},
"nrql": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Nrql"
},
"rule_id": {
"title": "Rule Id",
"type": "string"
}
},
"required": [
"rule_id"
],
"type": "object"
}