Skip to content
Open
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
4 changes: 4 additions & 0 deletions .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2875,6 +2875,8 @@ components:
type: string
group_by:
description: Array of fields to group results by.
example:
- "resource_name"
items:
description: Field to group results by.
example: "resource_name"
Expand Down Expand Up @@ -2912,6 +2914,8 @@ components:
- name
- service
- stat
- operation_name
- group_by
type: object
FormulaAndFunctionCloudCostDataSource:
description: Data source for Cloud Cost queries.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,15 @@ export class FormulaAndFunctionApmResourceStatsQueryDefinition {
/**
* Array of fields to group results by.
*/
"groupBy"?: Array<string>;
"groupBy": Array<string>;
/**
* Name of this query to use in formulas.
*/
"name": string;
/**
* Name of operation on service.
*/
"operationName"?: string;
"operationName": string;
/**
* Name of the second primary tag used within APM. Required when `primary_tag_value` is specified. See https://docs.datadoghq.com/tracing/guide/setting_primary_tags_to_scope/#add-a-second-primary-tag-in-datadog
*/
Expand Down Expand Up @@ -90,6 +90,7 @@ export class FormulaAndFunctionApmResourceStatsQueryDefinition {
groupBy: {
baseName: "group_by",
type: "Array<string>",
required: true,
},
name: {
baseName: "name",
Expand All @@ -99,6 +100,7 @@ export class FormulaAndFunctionApmResourceStatsQueryDefinition {
operationName: {
baseName: "operation_name",
type: "string",
required: true,
},
primaryTagName: {
baseName: "primary_tag_name",
Expand Down
Loading