Skip to content
Closed
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": "2025-08-27 15:02:45.796802",
"spec_repo_commit": "62a19e45"
"regenerated": "2025-08-27 16:57:37.197116",
"spec_repo_commit": "a560186a"
},
"v2": {
"apigentools_version": "1.6.6",
"regenerated": "2025-08-27 15:02:55.959409",
"spec_repo_commit": "62a19e45"
"regenerated": "2025-08-27 16:57:47.693748",
"spec_repo_commit": "a560186a"
}
}
}
13 changes: 13 additions & 0 deletions config/_default/menus/api.en.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9255,6 +9255,19 @@ menu:
unstable:
- v2
order: 1
- name: Update Scorecard outcomes asynchronously
url: '#update-scorecard-outcomes-asynchronously'
identifier: service-scorecards-update-scorecard-outcomes-asynchronously
parent: service-scorecards
generated: true
params:
versions:
- v2
operationids:
- UpdateScorecardOutcomesAsync
unstable:
- v2
order: 1
- name: List all rule outcomes
url: '#list-all-rule-outcomes'
identifier: service-scorecards-list-all-rule-outcomes
Expand Down
10 changes: 5 additions & 5 deletions content/en/api/v1/dashboards/examples.json

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@
"time": {
"type": "live",
"unit": "minute",
"value": 8
"value": 8,
"hide_incomplete_cost_data": true
},
"type": "timeseries",
"requests": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@
"time": {
"type": "fixed",
"from": 1712080128,
"to": 1712083128
"to": 1712083128,
"hide_incomplete_cost_data": true
},
"type": "timeseries",
"requests": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@
"sum"
],
"time": {
"live_span": "5m"
"live_span": "5m",
"hide_incomplete_cost_data": true
},
"type": "timeseries",
"requests": [
Expand Down
66 changes: 44 additions & 22 deletions content/en/api/v1/dashboards/widgets.json

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions content/en/api/v1/notebooks/examples.json

Large diffs are not rendered by default.

82 changes: 77 additions & 5 deletions content/en/api/v2/service-scorecards/examples.json

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"data": {
"attributes": {
"results": [
{
"rule_id": "q8MQxk8TCqrHnWkx",
"entity_reference": "service:my-service",
"remarks": "See: <a href=\"https://app.datadoghq.com/services\">Services</a>",
"state": "pass"
}
]
},
"type": "batched-outcome"
}
}
9 changes: 9 additions & 0 deletions data/api/v1/full_spec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24401,6 +24401,9 @@ components:
additionalProperties: false
description: Wrapper for live span
properties:
hide_incomplete_cost_data:
description: Whether to hide incomplete cost data in the widget.
type: boolean
live_span:
$ref: '#/components/schemas/WidgetLiveSpan'
type: object
Expand Down Expand Up @@ -24601,6 +24604,9 @@ components:
format: int64
minimum: 0
type: integer
hide_incomplete_cost_data:
description: Whether to hide incomplete cost data in the widget.
type: boolean
to:
description: End time in seconds since epoch.
example: 1712083128
Expand All @@ -24625,6 +24631,9 @@ components:
WidgetNewLiveSpan:
description: Used for arbitrary live span times, such as 17 minutes or 6 hours.
properties:
hide_incomplete_cost_data:
description: Whether to hide incomplete cost data in the widget.
type: boolean
type:
$ref: '#/components/schemas/WidgetNewLiveSpanType'
unit:
Expand Down
Loading
Loading