@grepr/cli 1.6.0-a4784d5 → 1.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -4925,6 +4925,12 @@ export interface components {
|
|
|
4925
4925
|
* @example [":", "#", "[", "]", "(", ")", "{", "}", "|", ",", ";", """, "'", " ", "\t", "\n", "\r"]
|
|
4926
4926
|
*/
|
|
4927
4927
|
delimiters: string[];
|
|
4928
|
+
/**
|
|
4929
|
+
* Emit new-pattern signals
|
|
4930
|
+
* @description Whether this operation emits LogPatternSignal events to the agent-service when new patterns are detected or replayed.
|
|
4931
|
+
* @default false
|
|
4932
|
+
*/
|
|
4933
|
+
emitNewPatternSignals?: boolean;
|
|
4928
4934
|
/**
|
|
4929
4935
|
* Enabled masks
|
|
4930
4936
|
* @description Masks that are enabled for tokenizing messages. These are specified as the names of the masks to use. The default enabled masks are: ipport, timestamp, uuid, number.
|
|
@@ -6175,6 +6181,12 @@ export interface components {
|
|
|
6175
6181
|
* @description Characters to use for splitting tokens.
|
|
6176
6182
|
*/
|
|
6177
6183
|
delimiters: string[];
|
|
6184
|
+
/**
|
|
6185
|
+
* Emit new-pattern signals
|
|
6186
|
+
* @description Whether this operation emits LogPatternSignal events to the agent-service when new patterns are detected or replayed.
|
|
6187
|
+
* @default false
|
|
6188
|
+
*/
|
|
6189
|
+
emitNewPatternSignals?: boolean;
|
|
6178
6190
|
/**
|
|
6179
6191
|
* Enabled masks
|
|
6180
6192
|
* @description Masks that are enabled for tokenizing messages.
|