-
Notifications
You must be signed in to change notification settings - Fork 380
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
[datadog_dashboard] Add support for sunburst widget request style #2089
Changes from all commits
e822e2d
d4afcd8
f9688ac
be0285a
a0a449e
92a06bd
327be8a
e54444d
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
2023-04-20T11:11:39.486019-04:00 | ||
2023-08-31T13:02:55.221453-04:00 |
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
2023-04-20T11:11:39.144014-04:00 | ||
2023-08-31T13:02:55.221405-04:00 |
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4625,7 +4625,7 @@ Required: | |
|
||
Required: | ||
|
||
- `data_source` (String) Source from which to query items to display in the stream. Valid values are `logs_stream`, `audit_stream`, `ci_pipeline_stream`, `ci_test_stream`, `rum_issue_stream`, `apm_issue_stream`, `logs_issue_stream`, `logs_pattern_stream`, `logs_transaction_stream`, `event_stream`. | ||
- `data_source` (String) Source from which to query items to display in the stream. Valid values are `logs_stream`, `audit_stream`, `ci_pipeline_stream`, `ci_test_stream`, `rum_issue_stream`, `apm_issue_stream`, `trace_stream`, `logs_issue_stream`, `logs_pattern_stream`, `logs_transaction_stream`, `event_stream`. | ||
nkzou marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
Optional: | ||
|
||
|
@@ -6954,6 +6954,7 @@ Optional: | |
- `query` (Block List) (see [below for nested schema](#nestedblock--widget--group_definition--widget--sunburst_definition--request--query)) | ||
- `rum_query` (Block List, Max: 1) The query to use for this widget. (see [below for nested schema](#nestedblock--widget--group_definition--widget--sunburst_definition--request--rum_query)) | ||
- `security_query` (Block List, Max: 1) The query to use for this widget. (see [below for nested schema](#nestedblock--widget--group_definition--widget--sunburst_definition--request--security_query)) | ||
- `style` (Block List, Max: 1) Define style for the widget's request. (see [below for nested schema](#nestedblock--widget--group_definition--widget--sunburst_definition--request--style)) | ||
|
||
<a id="nestedblock--widget--group_definition--widget--sunburst_definition--request--apm_query"></a> | ||
### Nested Schema for `widget.group_definition.widget.sunburst_definition.request.apm_query` | ||
|
@@ -7573,6 +7574,14 @@ Optional: | |
|
||
|
||
|
||
<a id="nestedblock--widget--group_definition--widget--sunburst_definition--request--style"></a> | ||
### Nested Schema for `widget.group_definition.widget.sunburst_definition.request.style` | ||
|
||
Optional: | ||
|
||
- `palette` (String) A color palette to apply to the widget. The available options are available at: https://docs.datadoghq.com/dashboards/widgets/timeseries/#appearance. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. question: Is it intentional that we're linking to the timeseries docs here? If these docs are generated then we may need to fix it upstream |
||
|
||
|
||
|
||
|
||
<a id="nestedblock--widget--group_definition--widget--timeseries_definition"></a> | ||
|
@@ -10283,7 +10292,7 @@ Required: | |
|
||
Required: | ||
|
||
- `data_source` (String) Source from which to query items to display in the stream. Valid values are `logs_stream`, `audit_stream`, `ci_pipeline_stream`, `ci_test_stream`, `rum_issue_stream`, `apm_issue_stream`, `logs_issue_stream`, `logs_pattern_stream`, `logs_transaction_stream`, `event_stream`. | ||
- `data_source` (String) Source from which to query items to display in the stream. Valid values are `logs_stream`, `audit_stream`, `ci_pipeline_stream`, `ci_test_stream`, `rum_issue_stream`, `apm_issue_stream`, `trace_stream`, `logs_issue_stream`, `logs_pattern_stream`, `logs_transaction_stream`, `event_stream`. | ||
|
||
Optional: | ||
|
||
|
@@ -12612,6 +12621,7 @@ Optional: | |
- `query` (Block List) (see [below for nested schema](#nestedblock--widget--sunburst_definition--request--query)) | ||
- `rum_query` (Block List, Max: 1) The query to use for this widget. (see [below for nested schema](#nestedblock--widget--sunburst_definition--request--rum_query)) | ||
- `security_query` (Block List, Max: 1) The query to use for this widget. (see [below for nested schema](#nestedblock--widget--sunburst_definition--request--security_query)) | ||
- `style` (Block List, Max: 1) Define style for the widget's request. (see [below for nested schema](#nestedblock--widget--sunburst_definition--request--style)) | ||
|
||
<a id="nestedblock--widget--sunburst_definition--request--apm_query"></a> | ||
### Nested Schema for `widget.sunburst_definition.request.apm_query` | ||
|
@@ -13231,6 +13241,14 @@ Optional: | |
|
||
|
||
|
||
<a id="nestedblock--widget--sunburst_definition--request--style"></a> | ||
### Nested Schema for `widget.sunburst_definition.request.style` | ||
|
||
Optional: | ||
|
||
- `palette` (String) A color palette to apply to the widget. The available options are available at: https://docs.datadoghq.com/dashboards/widgets/timeseries/#appearance. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. question: Is it intentional that we're linking to the timeseries docs here? If these docs are generated then we may need to fix it upstream There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Looks like most of the widget request styles share the same schema from There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I didn't really want to rock the boat here; but, offhand, I'll run this by Dataviz and see what they advise. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Update: it's on their radar. They're going to do a review of color docs, as I think there are a few more stale things beyond just this. |
||
|
||
|
||
|
||
|
||
<a id="nestedblock--widget--timeseries_definition"></a> | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
FYI, I flipped the wording compared to how Heatmaps describe this. (I think it makes more sense this way, but let me know if I should change it.)