Skip to content

Commit

Permalink
Allow 4 group-bys for pattern viz (#2642)
Browse files Browse the repository at this point in the history
Co-authored-by: ci.datadog-api-spec <[email protected]>
  • Loading branch information
api-clients-generation-pipeline[bot] and ci.datadog-api-spec authored Aug 21, 2024
1 parent ed17333 commit 043ca0a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
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": "2024-08-21 14:09:52.640376",
"spec_repo_commit": "5bcbcb40"
"regenerated": "2024-08-21 15:16:51.126809",
"spec_repo_commit": "4470dfc1"
},
"v2": {
"apigentools_version": "1.6.6",
"regenerated": "2024-08-21 14:09:52.661574",
"spec_repo_commit": "5bcbcb40"
"regenerated": "2024-08-21 15:16:51.153047",
"spec_repo_commit": "4470dfc1"
}
}
}
4 changes: 2 additions & 2 deletions .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4736,11 +4736,11 @@ components:
$ref: '#/components/schemas/WidgetEventSize'
group_by:
description: Group by configuration for the List Stream Widget. Group by
can be used only with logs_pattern_stream (up to 3 items) or logs_transaction_stream
can be used only with logs_pattern_stream (up to 4 items) or logs_transaction_stream
(one group by item is required) list stream source.
items:
$ref: '#/components/schemas/ListStreamGroupByItems'
maxItems: 3
maxItems: 4
type: array
indexes:
description: List of indexes.
Expand Down
2 changes: 1 addition & 1 deletion api/datadogV1/model_list_stream_query.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ type ListStreamQuery struct {
DataSource ListStreamSource `json:"data_source"`
// Size to use to display an event.
EventSize *WidgetEventSize `json:"event_size,omitempty"`
// Group by configuration for the List Stream Widget. Group by can be used only with logs_pattern_stream (up to 3 items) or logs_transaction_stream (one group by item is required) list stream source.
// Group by configuration for the List Stream Widget. Group by can be used only with logs_pattern_stream (up to 4 items) or logs_transaction_stream (one group by item is required) list stream source.
GroupBy []ListStreamGroupByItems `json:"group_by,omitempty"`
// List of indexes.
Indexes []string `json:"indexes,omitempty"`
Expand Down

0 comments on commit 043ca0a

Please sign in to comment.