Skip to content

Commit 0ddde5f

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
Regenerate client from commit f64c91a of spec repo (#4153)
Co-authored-by: ci.datadog-api-spec <packages@datadoghq.com>
1 parent af7ca43 commit 0ddde5f

2 files changed

Lines changed: 9 additions & 5 deletions

File tree

.generator/schemas/v2/openapi.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137505,7 +137505,7 @@ paths:
137505137505
If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).
137506137506
/api/v2/dashboards/usage:
137507137507
get:
137508-
description: Get paginated usage statistics for every dashboard in the caller's organization. Use `page[limit]` and `page[offset]` to walk the result set. Use `filter[edited_before]` or `filter[viewed_before]` to narrow results by recency. View-count fields depend on Real User Monitoring (RUM) and are `null` or `0` in orgs without RUM.
137508+
description: Get paginated usage statistics for every dashboard in the caller's organization. Use `page[limit]` and `page[offset]` to walk the result set. Use `filter[edited_before]` or `filter[viewed_before]` to narrow results by edit or view date. View-count fields depend on Real User Monitoring (RUM) and are `null` or `0` in orgs without RUM. **View counts are refreshed once per day** and **only reflect views recorded starting January 2025**; views prior to that date are not included.
137509137509
operationId: ListDashboardsUsage
137510137510
parameters:
137511137511
- description: Maximum number of dashboards to return per page. Server-side maximum is 500; values above 500 return a 400 Bad Request.
@@ -137620,7 +137620,7 @@ paths:
137620137620
If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).
137621137621
/api/v2/dashboards/{dashboard_id}/usage:
137622137622
get:
137623-
description: Get usage statistics for a single dashboard. The response includes view counts, the most recent view and edit times, widget counts, and the dashboard quality score. View-count fields depend on Real User Monitoring (RUM) and are `null` or `0` in orgs without RUM.
137623+
description: Get usage statistics for a single dashboard. The response includes view counts, the most recent view and edit times, widget counts, and the dashboard quality score. View-count fields depend on Real User Monitoring (RUM) and are `null` or `0` in orgs without RUM. **View counts are refreshed once per day** and **only reflect views recorded starting January 2025**; views prior to that date are not included.
137624137624
operationId: GetDashboardUsage
137625137625
parameters:
137626137626
- description: The ID of the dashboard.

src/main/java/com/datadog/api/client/v2/api/DashboardsApi.java

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,8 @@ public CompletableFuture<DashboardUsageResponse> getDashboardUsageAsync(String d
8181
* Get usage statistics for a single dashboard. The response includes view counts, the most recent
8282
* view and edit times, widget counts, and the dashboard quality score. View-count fields depend
8383
* on Real User Monitoring (RUM) and are <code>null</code> or <code>0</code> in orgs without RUM.
84+
* <strong>View counts are refreshed once per day</strong> and <strong>only reflect views recorded
85+
* starting January 2025</strong>; views prior to that date are not included.
8486
*
8587
* @param dashboardId The ID of the dashboard. (required)
8688
* @return ApiResponse&lt;DashboardUsageResponse&gt;
@@ -380,9 +382,11 @@ public PaginationIterable<DashboardUsage> listDashboardsUsageWithPagination(
380382
/**
381383
* Get paginated usage statistics for every dashboard in the caller's organization. Use <code>
382384
* page[limit]</code> and <code>page[offset]</code> to walk the result set. Use <code>
383-
* filter[edited_before]</code> or <code>filter[viewed_before]</code> to narrow results by
384-
* recency. View-count fields depend on Real User Monitoring (RUM) and are <code>null</code> or
385-
* <code>0</code> in orgs without RUM.
385+
* filter[edited_before]</code> or <code>filter[viewed_before]</code> to narrow results by edit or
386+
* view date. View-count fields depend on Real User Monitoring (RUM) and are <code>null</code> or
387+
* <code>0</code> in orgs without RUM. <strong>View counts are refreshed once per day</strong> and
388+
* <strong>only reflect views recorded starting January 2025</strong>; views prior to that date
389+
* are not included.
386390
*
387391
* @param parameters Optional parameters for the request.
388392
* @return ApiResponse&lt;ListDashboardsUsageResponse&gt;

0 commit comments

Comments
 (0)