Skip to content

Commit bad71a1

Browse files
committed
v1.82.0
1 parent 48ccfe8 commit bad71a1

11 files changed

+211
-18
lines changed

docs/resources/browser_monitor.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -905,6 +905,11 @@ Required:
905905
- `creds` (String) A reference to the entry within the credential vault
906906
- `type` (String) The type of authentication
907907

908+
Optional:
909+
910+
- `auth_server_allowlist` (String) List of allowed servers, optional with Kerberos authentication
911+
- `domain` (String) User's domain name, required with Kerberos authentication
912+
908913

909914
<a id="nestedblock--script--events--event--navigate--target"></a>
910915
### Nested Schema for `script.events.event.navigate.target`

docs/resources/log_agent_feature_flags.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ This setting enables:
4141
* Detection and collection of logs from short-lived containers and processes in Kubernetes.
4242
* Detection and collection of logs from any processes in containers in Kubernetes. Up until now only processes detected by OneAgent are covered with the Log module.
4343
* Log events decoration according to semantic dictionary.
44-
**Note:** The matcher "Deployment name" in the log sources configuration will be ignored and needs to be replaced with "Workload name", requires **Dynatrace Operator 1.4.1+**.
44+
**Note:** The matcher "Deployment name" in the log sources configuration will be ignored and needs to be replaced with "Workload name", requires **Dynatrace Operator 1.4.2+**.
4545

4646
For more details, check our [documentation](https://dt-url.net/jn02ey0).
4747

@@ -51,6 +51,7 @@ This setting enables:
5151
This setting enables:
5252
* Detection and to have logs ingested matching ingest rule is required.
5353
- `scope` (String) The scope of this setting (HOST, KUBERNETES_CLUSTER, HOST_GROUP). Omit this property if you want to cover the whole environment.
54+
- `user_and_event_data` (Boolean) Enable OneAgent to collect data from Event Logs in the User Data and Event Data sections.
5455

5556
### Read-Only
5657

docs/resources/openpipeline_business_events.md

Lines changed: 38 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,7 @@ Applicable processors are DqlProcessor, FieldsAddProcessor, FieldsRemoveProcesso
108108
Optional:
109109

110110
- `dql_processor` (Block List, Max: 1) Processor to apply a DQL script (see [below for nested schema](#nestedblock--endpoints--endpoint--processors--processor--dql_processor))
111+
- `drop_processor` (Block List, Max: 1) Processor to drop the record either during the processing stage or at the endpoint (see [below for nested schema](#nestedblock--endpoints--endpoint--processors--processor--drop_processor))
111112
- `fields_add_processor` (Block List, Max: 1) Processor to add fields (see [below for nested schema](#nestedblock--endpoints--endpoint--processors--processor--fields_add_processor))
112113
- `fields_remove_processor` (Block List, Max: 1) Processor to remove fields (see [below for nested schema](#nestedblock--endpoints--endpoint--processors--processor--fields_remove_processor))
113114
- `fields_rename_processor` (Block List, Max: 1) Processor to rename fields (see [below for nested schema](#nestedblock--endpoints--endpoint--processors--processor--fields_rename_processor))
@@ -128,6 +129,21 @@ Optional:
128129
- `sample_data` (String) Sample data related to the processor for documentation or testing
129130

130131

132+
<a id="nestedblock--endpoints--endpoint--processors--processor--drop_processor"></a>
133+
### Nested Schema for `endpoints.endpoint.processors.processor.drop_processor`
134+
135+
Required:
136+
137+
- `description` (String) Name or description of the processor
138+
- `enabled` (Boolean) Indicates if the object is active
139+
- `id` (String) Identifier of the processor. Must be unique within a stage.
140+
- `matcher` (String) Matching condition to apply on incoming records
141+
142+
Optional:
143+
144+
- `sample_data` (String) Sample data related to the processor for documentation or testing
145+
146+
131147
<a id="nestedblock--endpoints--endpoint--processors--processor--fields_add_processor"></a>
132148
### Nested Schema for `endpoints.endpoint.processors.processor.fields_add_processor`
133149

@@ -252,7 +268,7 @@ Required:
252268

253269
Optional:
254270

255-
- `field_extraction` (Block List, Max: 1) (see [below for nested schema](#nestedblock--pipelines--pipeline--data_extraction--processor--bizevent_extraction_processor--field_extraction))
271+
- `field_extraction` (Block List, Max: 1) Definition of the field extraction (see [below for nested schema](#nestedblock--pipelines--pipeline--data_extraction--processor--bizevent_extraction_processor--field_extraction))
256272
- `sample_data` (String) Sample data related to the processor for documentation or testing
257273

258274
<a id="nestedblock--pipelines--pipeline--data_extraction--processor--bizevent_extraction_processor--event_provider"></a>
@@ -286,8 +302,11 @@ Optional:
286302

287303
Required:
288304

289-
- `fields` (List of String)
290-
- `semantic` (String)
305+
- `semantic` (String) Defines how the fields of the source record should be extracted
306+
307+
Optional:
308+
309+
- `fields` (List of String) Unique fields to include/exclude in the extracted record
291310

292311

293312

@@ -384,6 +403,7 @@ Applicable processors are DqlProcessor, FieldsAddProcessor, FieldsRemoveProcesso
384403
Optional:
385404

386405
- `dql_processor` (Block List, Max: 1) Processor to apply a DQL script (see [below for nested schema](#nestedblock--pipelines--pipeline--processing--processor--dql_processor))
406+
- `drop_processor` (Block List, Max: 1) Processor to drop the record either during the processing stage or at the endpoint (see [below for nested schema](#nestedblock--pipelines--pipeline--processing--processor--drop_processor))
387407
- `fields_add_processor` (Block List, Max: 1) Processor to add fields (see [below for nested schema](#nestedblock--pipelines--pipeline--processing--processor--fields_add_processor))
388408
- `fields_remove_processor` (Block List, Max: 1) Processor to remove fields (see [below for nested schema](#nestedblock--pipelines--pipeline--processing--processor--fields_remove_processor))
389409
- `fields_rename_processor` (Block List, Max: 1) Processor to rename fields (see [below for nested schema](#nestedblock--pipelines--pipeline--processing--processor--fields_rename_processor))
@@ -405,6 +425,21 @@ Optional:
405425
- `sample_data` (String) Sample data related to the processor for documentation or testing
406426

407427

428+
<a id="nestedblock--pipelines--pipeline--processing--processor--drop_processor"></a>
429+
### Nested Schema for `pipelines.pipeline.processing.processor.drop_processor`
430+
431+
Required:
432+
433+
- `description` (String) Name or description of the processor
434+
- `enabled` (Boolean) Indicates if the object is active
435+
- `id` (String) Identifier of the processor. Must be unique within a stage.
436+
- `matcher` (String) Matching condition to apply on incoming records
437+
438+
Optional:
439+
440+
- `sample_data` (String) Sample data related to the processor for documentation or testing
441+
442+
408443
<a id="nestedblock--pipelines--pipeline--processing--processor--fields_add_processor"></a>
409444
### Nested Schema for `pipelines.pipeline.processing.processor.fields_add_processor`
410445

docs/resources/openpipeline_events.md

Lines changed: 38 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -266,6 +266,7 @@ Applicable processors are DqlProcessor, FieldsAddProcessor, FieldsRemoveProcesso
266266
Optional:
267267

268268
- `dql_processor` (Block List, Max: 1) Processor to apply a DQL script (see [below for nested schema](#nestedblock--endpoints--endpoint--processors--processor--dql_processor))
269+
- `drop_processor` (Block List, Max: 1) Processor to drop the record either during the processing stage or at the endpoint (see [below for nested schema](#nestedblock--endpoints--endpoint--processors--processor--drop_processor))
269270
- `fields_add_processor` (Block List, Max: 1) Processor to add fields (see [below for nested schema](#nestedblock--endpoints--endpoint--processors--processor--fields_add_processor))
270271
- `fields_remove_processor` (Block List, Max: 1) Processor to remove fields (see [below for nested schema](#nestedblock--endpoints--endpoint--processors--processor--fields_remove_processor))
271272
- `fields_rename_processor` (Block List, Max: 1) Processor to rename fields (see [below for nested schema](#nestedblock--endpoints--endpoint--processors--processor--fields_rename_processor))
@@ -286,6 +287,21 @@ Optional:
286287
- `sample_data` (String) Sample data related to the processor for documentation or testing
287288

288289

290+
<a id="nestedblock--endpoints--endpoint--processors--processor--drop_processor"></a>
291+
### Nested Schema for `endpoints.endpoint.processors.processor.drop_processor`
292+
293+
Required:
294+
295+
- `description` (String) Name or description of the processor
296+
- `enabled` (Boolean) Indicates if the object is active
297+
- `id` (String) Identifier of the processor. Must be unique within a stage.
298+
- `matcher` (String) Matching condition to apply on incoming records
299+
300+
Optional:
301+
302+
- `sample_data` (String) Sample data related to the processor for documentation or testing
303+
304+
289305
<a id="nestedblock--endpoints--endpoint--processors--processor--fields_add_processor"></a>
290306
### Nested Schema for `endpoints.endpoint.processors.processor.fields_add_processor`
291307

@@ -410,7 +426,7 @@ Required:
410426

411427
Optional:
412428

413-
- `field_extraction` (Block List, Max: 1) (see [below for nested schema](#nestedblock--pipelines--pipeline--data_extraction--processor--bizevent_extraction_processor--field_extraction))
429+
- `field_extraction` (Block List, Max: 1) Definition of the field extraction (see [below for nested schema](#nestedblock--pipelines--pipeline--data_extraction--processor--bizevent_extraction_processor--field_extraction))
414430
- `sample_data` (String) Sample data related to the processor for documentation or testing
415431

416432
<a id="nestedblock--pipelines--pipeline--data_extraction--processor--bizevent_extraction_processor--event_provider"></a>
@@ -444,8 +460,11 @@ Optional:
444460

445461
Required:
446462

447-
- `fields` (List of String)
448-
- `semantic` (String)
463+
- `semantic` (String) Defines how the fields of the source record should be extracted
464+
465+
Optional:
466+
467+
- `fields` (List of String) Unique fields to include/exclude in the extracted record
449468

450469

451470

@@ -542,6 +561,7 @@ Applicable processors are DqlProcessor, FieldsAddProcessor, FieldsRemoveProcesso
542561
Optional:
543562

544563
- `dql_processor` (Block List, Max: 1) Processor to apply a DQL script (see [below for nested schema](#nestedblock--pipelines--pipeline--processing--processor--dql_processor))
564+
- `drop_processor` (Block List, Max: 1) Processor to drop the record either during the processing stage or at the endpoint (see [below for nested schema](#nestedblock--pipelines--pipeline--processing--processor--drop_processor))
545565
- `fields_add_processor` (Block List, Max: 1) Processor to add fields (see [below for nested schema](#nestedblock--pipelines--pipeline--processing--processor--fields_add_processor))
546566
- `fields_remove_processor` (Block List, Max: 1) Processor to remove fields (see [below for nested schema](#nestedblock--pipelines--pipeline--processing--processor--fields_remove_processor))
547567
- `fields_rename_processor` (Block List, Max: 1) Processor to rename fields (see [below for nested schema](#nestedblock--pipelines--pipeline--processing--processor--fields_rename_processor))
@@ -563,6 +583,21 @@ Optional:
563583
- `sample_data` (String) Sample data related to the processor for documentation or testing
564584

565585

586+
<a id="nestedblock--pipelines--pipeline--processing--processor--drop_processor"></a>
587+
### Nested Schema for `pipelines.pipeline.processing.processor.drop_processor`
588+
589+
Required:
590+
591+
- `description` (String) Name or description of the processor
592+
- `enabled` (Boolean) Indicates if the object is active
593+
- `id` (String) Identifier of the processor. Must be unique within a stage.
594+
- `matcher` (String) Matching condition to apply on incoming records
595+
596+
Optional:
597+
598+
- `sample_data` (String) Sample data related to the processor for documentation or testing
599+
600+
566601
<a id="nestedblock--pipelines--pipeline--processing--processor--fields_add_processor"></a>
567602
### Nested Schema for `pipelines.pipeline.processing.processor.fields_add_processor`
568603

docs/resources/openpipeline_logs.md

Lines changed: 38 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,7 @@ Applicable processors are DqlProcessor, FieldsAddProcessor, FieldsRemoveProcesso
111111
Optional:
112112

113113
- `dql_processor` (Block List, Max: 1) Processor to apply a DQL script (see [below for nested schema](#nestedblock--endpoints--endpoint--processors--processor--dql_processor))
114+
- `drop_processor` (Block List, Max: 1) Processor to drop the record either during the processing stage or at the endpoint (see [below for nested schema](#nestedblock--endpoints--endpoint--processors--processor--drop_processor))
114115
- `fields_add_processor` (Block List, Max: 1) Processor to add fields (see [below for nested schema](#nestedblock--endpoints--endpoint--processors--processor--fields_add_processor))
115116
- `fields_remove_processor` (Block List, Max: 1) Processor to remove fields (see [below for nested schema](#nestedblock--endpoints--endpoint--processors--processor--fields_remove_processor))
116117
- `fields_rename_processor` (Block List, Max: 1) Processor to rename fields (see [below for nested schema](#nestedblock--endpoints--endpoint--processors--processor--fields_rename_processor))
@@ -131,6 +132,21 @@ Optional:
131132
- `sample_data` (String) Sample data related to the processor for documentation or testing
132133

133134

135+
<a id="nestedblock--endpoints--endpoint--processors--processor--drop_processor"></a>
136+
### Nested Schema for `endpoints.endpoint.processors.processor.drop_processor`
137+
138+
Required:
139+
140+
- `description` (String) Name or description of the processor
141+
- `enabled` (Boolean) Indicates if the object is active
142+
- `id` (String) Identifier of the processor. Must be unique within a stage.
143+
- `matcher` (String) Matching condition to apply on incoming records
144+
145+
Optional:
146+
147+
- `sample_data` (String) Sample data related to the processor for documentation or testing
148+
149+
134150
<a id="nestedblock--endpoints--endpoint--processors--processor--fields_add_processor"></a>
135151
### Nested Schema for `endpoints.endpoint.processors.processor.fields_add_processor`
136152

@@ -255,7 +271,7 @@ Required:
255271

256272
Optional:
257273

258-
- `field_extraction` (Block List, Max: 1) (see [below for nested schema](#nestedblock--pipelines--pipeline--data_extraction--processor--bizevent_extraction_processor--field_extraction))
274+
- `field_extraction` (Block List, Max: 1) Definition of the field extraction (see [below for nested schema](#nestedblock--pipelines--pipeline--data_extraction--processor--bizevent_extraction_processor--field_extraction))
259275
- `sample_data` (String) Sample data related to the processor for documentation or testing
260276

261277
<a id="nestedblock--pipelines--pipeline--data_extraction--processor--bizevent_extraction_processor--event_provider"></a>
@@ -289,8 +305,11 @@ Optional:
289305

290306
Required:
291307

292-
- `fields` (List of String)
293-
- `semantic` (String)
308+
- `semantic` (String) Defines how the fields of the source record should be extracted
309+
310+
Optional:
311+
312+
- `fields` (List of String) Unique fields to include/exclude in the extracted record
294313

295314

296315

@@ -387,6 +406,7 @@ Applicable processors are DqlProcessor, FieldsAddProcessor, FieldsRemoveProcesso
387406
Optional:
388407

389408
- `dql_processor` (Block List, Max: 1) Processor to apply a DQL script (see [below for nested schema](#nestedblock--pipelines--pipeline--processing--processor--dql_processor))
409+
- `drop_processor` (Block List, Max: 1) Processor to drop the record either during the processing stage or at the endpoint (see [below for nested schema](#nestedblock--pipelines--pipeline--processing--processor--drop_processor))
390410
- `fields_add_processor` (Block List, Max: 1) Processor to add fields (see [below for nested schema](#nestedblock--pipelines--pipeline--processing--processor--fields_add_processor))
391411
- `fields_remove_processor` (Block List, Max: 1) Processor to remove fields (see [below for nested schema](#nestedblock--pipelines--pipeline--processing--processor--fields_remove_processor))
392412
- `fields_rename_processor` (Block List, Max: 1) Processor to rename fields (see [below for nested schema](#nestedblock--pipelines--pipeline--processing--processor--fields_rename_processor))
@@ -408,6 +428,21 @@ Optional:
408428
- `sample_data` (String) Sample data related to the processor for documentation or testing
409429

410430

431+
<a id="nestedblock--pipelines--pipeline--processing--processor--drop_processor"></a>
432+
### Nested Schema for `pipelines.pipeline.processing.processor.drop_processor`
433+
434+
Required:
435+
436+
- `description` (String) Name or description of the processor
437+
- `enabled` (Boolean) Indicates if the object is active
438+
- `id` (String) Identifier of the processor. Must be unique within a stage.
439+
- `matcher` (String) Matching condition to apply on incoming records
440+
441+
Optional:
442+
443+
- `sample_data` (String) Sample data related to the processor for documentation or testing
444+
445+
411446
<a id="nestedblock--pipelines--pipeline--processing--processor--fields_add_processor"></a>
412447
### Nested Schema for `pipelines.pipeline.processing.processor.fields_add_processor`
413448

0 commit comments

Comments
 (0)