diff --git a/.generator/schemas/v2/openapi.yaml b/.generator/schemas/v2/openapi.yaml index d8f50ea9305..9af8013708d 100644 --- a/.generator/schemas/v2/openapi.yaml +++ b/.generator/schemas/v2/openapi.yaml @@ -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. @@ -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. diff --git a/src/main/java/com/datadog/api/client/v2/api/DashboardsApi.java b/src/main/java/com/datadog/api/client/v2/api/DashboardsApi.java index a95779cf25f..5e47a0374eb 100644 --- a/src/main/java/com/datadog/api/client/v2/api/DashboardsApi.java +++ b/src/main/java/com/datadog/api/client/v2/api/DashboardsApi.java @@ -81,6 +81,8 @@ public CompletableFuture 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 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. * * @param dashboardId The ID of the dashboard. (required) * @return ApiResponse<DashboardUsageResponse> @@ -380,9 +382,11 @@ public PaginationIterable listDashboardsUsageWithPagination( /** * 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. + * 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. * * @param parameters Optional parameters for the request. * @return ApiResponse<ListDashboardsUsageResponse>