Skip to content
Open
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
4 changes: 2 additions & 2 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -137534,7 +137534,7 @@ paths:
If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).
/api/v2/dashboards/usage:
get:
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.
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.
operationId: ListDashboardsUsage
parameters:
- description: Maximum number of dashboards to return per page. Server-side maximum is 500; values above 500 return a 400 Bad Request.
Expand Down Expand Up @@ -137649,7 +137649,7 @@ paths:
If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).
/api/v2/dashboards/{dashboard_id}/usage:
get:
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.
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.
operationId: GetDashboardUsage
parameters:
- description: The ID of the dashboard.
Expand Down
10 changes: 7 additions & 3 deletions src/main/java/com/datadog/api/client/v2/api/DashboardsApi.java
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,8 @@ public CompletableFuture<DashboardUsageResponse> getDashboardUsageAsync(String d
* 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 <code>null</code> or <code>0</code> in orgs without RUM.
* <strong>View counts are refreshed once per day</strong> and <strong>only reflect views recorded
* starting January 2025</strong>; views prior to that date are not included.
*
* @param dashboardId The ID of the dashboard. (required)
* @return ApiResponse&lt;DashboardUsageResponse&gt;
Expand Down Expand Up @@ -380,9 +382,11 @@ public PaginationIterable<DashboardUsage> listDashboardsUsageWithPagination(
/**
* Get paginated usage statistics for every dashboard in the caller's organization. Use <code>
* page[limit]</code> and <code>page[offset]</code> to walk the result set. Use <code>
* filter[edited_before]</code> or <code>filter[viewed_before]</code> to narrow results by
* recency. View-count fields depend on Real User Monitoring (RUM) and are <code>null</code> or
* <code>0</code> in orgs without RUM.
* filter[edited_before]</code> or <code>filter[viewed_before]</code> to narrow results by edit or
* view date. View-count fields depend on Real User Monitoring (RUM) and are <code>null</code> or
* <code>0</code> in orgs without RUM. <strong>View counts are refreshed once per day</strong> and
* <strong>only reflect views recorded starting January 2025</strong>; views prior to that date
* are not included.
*
* @param parameters Optional parameters for the request.
* @return ApiResponse&lt;ListDashboardsUsageResponse&gt;
Expand Down
Loading