Skip to content

Commit cbd2c3a

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 29fa400 of spec repo
1 parent 1880f67 commit cbd2c3a

3 files changed

Lines changed: 4 additions & 5 deletions

File tree

.generator/schemas/v2/openapi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46626,7 +46626,7 @@ components:
4662646626
$ref: "#/components/schemas/ObservabilityPipelineParseGrokProcessorRuleMatchRule"
4662746627
type: array
4662846628
source:
46629-
description: The name of the field in the log event to apply the Grok rules to.
46629+
description: The value of the source field in log events to be processed by the Grok rules.
4663046630
example: "message"
4663146631
type: string
4663246632
support_rules:

private/bdd_runner/src/step_definitions/request_steps.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -322,9 +322,8 @@ Then(
322322
Then(
323323
"the response {string} does not have field {string}",
324324
function (this: World, responsePath: string, field: string) {
325-
expect(
326-
pathLookup(this.response, responsePath)[field.toAttributeName()],
327-
).to.be.undefined;
325+
expect(pathLookup(this.response, responsePath)[field.toAttributeName()]).to
326+
.be.undefined;
328327
},
329328
);
330329

services/observability_pipelines/src/v2/models/ObservabilityPipelineParseGrokProcessorRule.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export class ObservabilityPipelineParseGrokProcessorRule {
1414
*/
1515
"matchRules": Array<ObservabilityPipelineParseGrokProcessorRuleMatchRule>;
1616
/**
17-
* The name of the field in the log event to apply the Grok rules to.
17+
* The value of the source field in log events to be processed by the Grok rules.
1818
*/
1919
"source": string;
2020
/**

0 commit comments

Comments
 (0)