You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- `ignore_missing`: Ignores the case when the field is missing. Defaults to `false`. If the field is missing and this configuration is set to `false`, an exception will be thrown.
110
111
112
+
### `decolorize`
113
+
114
+
The `decolorize` processor is used to remove ANSI color codes from log data. Here's an example configuration:
115
+
116
+
```yaml
117
+
processors:
118
+
- decolorize:
119
+
fields:
120
+
- message
121
+
```
122
+
123
+
In the above example, the configuration of the `decolorize` processor includes the following fields:
124
+
125
+
- `fields`: A list of field names to be decolorized.
126
+
111
127
### `dissect`
112
128
113
129
The `dissect` processor is used to split log data fields. Here's an example configuration:
@@ -142,12 +158,12 @@ Similar to Logstash's dissect pattern, the dissect pattern consists of `%{key}`,
142
158
143
159
The dissect pattern supports the following modifiers:
0 commit comments