Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .apigentools-info
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
"spec_versions": {
"v1": {
"apigentools_version": "1.6.6",
"regenerated": "2025-07-02 20:43:20.487037",
"spec_repo_commit": "e327e6df"
"regenerated": "2025-07-03 15:49:14.072195",
"spec_repo_commit": "d781944f"
},
"v2": {
"apigentools_version": "1.6.6",
"regenerated": "2025-07-02 20:43:20.503175",
"spec_repo_commit": "e327e6df"
"regenerated": "2025-07-03 15:49:14.088431",
"spec_repo_commit": "d781944f"
}
}
}
138 changes: 138 additions & 0 deletions .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5163,6 +5163,143 @@ components:
type: string
x-enum-varnames:
- ARITHMETIC_PROCESSOR
LogsArrayProcessor:
description: 'A processor for extracting, aggregating, or transforming values
from JSON arrays within your logs.

Supported operations are:

- Select value from matching element

- Compute array length

- Append a value to an array'
properties:
is_enabled:
default: false
description: Whether or not the processor is enabled.
type: boolean
name:
description: Name of the processor.
type: string
operation:
$ref: '#/components/schemas/LogsArrayProcessorOperation'
type:
$ref: '#/components/schemas/LogsArrayProcessorType'
required:
- operation
- type
type: object
LogsArrayProcessorOperation:
description: Configuration of the array processor operation to perform.
oneOf:
- $ref: '#/components/schemas/LogsArrayProcessorOperationAppend'
- $ref: '#/components/schemas/LogsArrayProcessorOperationLength'
- $ref: '#/components/schemas/LogsArrayProcessorOperationSelect'
LogsArrayProcessorOperationAppend:
description: Operation that appends a value to a target array attribute.
properties:
preserve_source:
default: true
description: Remove or preserve the remapped source element.
type: boolean
source:
description: Attribute path containing the value to append.
example: network.client.ip
type: string
target:
description: Attribute path of the array to append to.
example: sourceIps
type: string
type:
$ref: '#/components/schemas/LogsArrayProcessorOperationAppendType'
required:
- type
- source
- target
type: object
LogsArrayProcessorOperationAppendType:
description: Operation type.
enum:
- append
example: append
type: string
x-enum-varnames:
- APPEND
LogsArrayProcessorOperationLength:
description: Operation that computes the length of a `source` array and stores
the result in the `target` attribute.
properties:
source:
description: Attribute path of the array to measure.
example: tags
type: string
target:
description: Attribute that receives the computed length.
example: tagCount
type: string
type:
$ref: '#/components/schemas/LogsArrayProcessorOperationLengthType'
required:
- type
- source
- target
type: object
LogsArrayProcessorOperationLengthType:
description: Operation type.
enum:
- length
example: length
type: string
x-enum-varnames:
- LENGTH
LogsArrayProcessorOperationSelect:
description: Operation that finds an object in a `source` array using a `filter`,
and then extracts a specific value into the `target` attribute.
properties:
filter:
description: Filter condition expressed as `key:value` used to find the
matching element.
example: name:Referrer
type: string
source:
description: Attribute path of the array to search into.
example: httpRequest.headers
type: string
target:
description: Attribute that receives the extracted value.
example: referrer
type: string
type:
$ref: '#/components/schemas/LogsArrayProcessorOperationSelectType'
value_to_extract:
description: Key of the value to extract from the matching element.
example: value
type: string
required:
- type
- source
- target
- filter
- value_to_extract
type: object
LogsArrayProcessorOperationSelectType:
description: Operation type.
enum:
- select
example: select
type: string
x-enum-varnames:
- SELECT
LogsArrayProcessorType:
default: array-processor
description: Type of logs array processor.
enum:
- array-processor
example: array-processor
type: string
x-enum-varnames:
- ARRAY_PROCESSOR
LogsAttributeRemapper:
description: 'The remapper processor remaps any source attribute(s) or tag to
another target attribute or tag.
Expand Down Expand Up @@ -6060,6 +6197,7 @@ components:
- $ref: '#/components/schemas/ReferenceTableLogsLookupProcessor'
- $ref: '#/components/schemas/LogsTraceRemapper'
- $ref: '#/components/schemas/LogsSpanRemapper'
- $ref: '#/components/schemas/LogsArrayProcessor'
LogsQueryCompute:
description: Define computation for a log query.
properties:
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
2025-06-30T15:45:40.994Z

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
2025-06-30T15:45:41.844Z

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
2025-06-30T15:45:42.655Z

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
2025-06-30T15:45:43.474Z

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
2025-06-30T15:45:44.240Z
Loading
Loading