Skip to content

Allow 4 group-bys for pattern viz #2116

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
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": "2024-08-21 14:09:57.200863",
"spec_repo_commit": "5bcbcb40"
"regenerated": "2024-08-21 15:17:00.453751",
"spec_repo_commit": "4470dfc1"
},
"v2": {
"apigentools_version": "1.6.6",
"regenerated": "2024-08-21 14:09:57.224783",
"spec_repo_commit": "5bcbcb40"
"regenerated": "2024-08-21 15:17:00.482428",
"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
4 changes: 2 additions & 2 deletions src/datadog_api_client/v1/model/list_stream_query.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class ListStreamQuery(ModelNormal):
"min_items": 1,
},
"group_by": {
"max_items": 3,
"max_items": 4,
},
}

Expand Down Expand Up @@ -86,7 +86,7 @@ def __init__(
:param event_size: Size to use to display an event.
:type event_size: WidgetEventSize, optional
:param group_by: 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.
:param group_by: 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.
:type group_by: [ListStreamGroupByItems], optional
:param indexes: List of indexes.
Expand Down
Loading