You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Optionally, paginate by using the ``page[cursor]`` and/or ``page[size]`` query parameters.
793
800
To fetch the first page, pass in a query parameter with either a valid ``page[size]`` or an empty cursor like ``page[cursor]=``. To fetch the next page, pass in the ``next_cursor`` value from the response as the new ``page[cursor]`` value.
794
801
Once the ``meta.pagination.next_cursor`` value is null, all pages have been retrieved.
802
+
Use the ``include`` query parameter to fetch additional data with the response. When ``include=metric_volumes`` is specified, the response includes volume data for each custom metric in the ``included`` array, with a corresponding ``relationships`` link on each metric in ``data``. Volume data is only returned for custom metrics. All volume values represent a 1-hour timeframe.
795
803
796
804
:param filter_configured: Filter custom metrics that have configured tags.
797
805
:type filter_configured: bool, optional
@@ -816,6 +824,8 @@ def list_tag_configurations(
816
824
:type filter_tags: str, optional
817
825
:param filter_related_assets: (Preview) Filter metrics that are used in dashboards, monitors, notebooks, SLOs.
818
826
:type filter_related_assets: bool, optional
827
+
:param include: Comma-separated list of additional data to include in the response. Allowed values: ``metric_volumes``. When ``metric_volumes`` is specified, the response includes volume data for each custom metric in the ``included`` array, with a corresponding ``relationships`` link on each metric in ``data``.
828
+
:type include: MetricVolumesInclude, optional
819
829
:param window_seconds: The number of seconds of look back (from now) to apply to a filter[tag] or filter[queried] query.
820
830
Default value is 3600 (1 hour), maximum value is 5,184,000 (60 days).
:param filter_related_assets: (Preview) Filter metrics that are used in dashboards, monitors, notebooks, SLOs.
907
921
:type filter_related_assets: bool, optional
922
+
:param include: Comma-separated list of additional data to include in the response. Allowed values: ``metric_volumes``. When ``metric_volumes`` is specified, the response includes volume data for each custom metric in the ``included`` array, with a corresponding ``relationships`` link on each metric in ``data``.
923
+
:type include: MetricVolumesInclude, optional
908
924
:param window_seconds: The number of seconds of look back (from now) to apply to a filter[tag] or filter[queried] query.
909
925
Default value is 3600 (1 hour), maximum value is 5,184,000 (60 days).
0 commit comments