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
807
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
808
Once the ``meta.pagination.next_cursor`` value is null, all pages have been retrieved.
809
+
Use ``include=metric_volumes`` to fetch indexed and ingested volume data for each metric, and ``sort`` to order results by volume.
795
810
796
811
:param filter_configured: Filter custom metrics that have configured tags.
797
812
:type filter_configured: bool, optional
@@ -816,6 +831,13 @@ def list_tag_configurations(
816
831
:type filter_tags: str, optional
817
832
:param filter_related_assets: (Preview) Filter metrics that are used in dashboards, monitors, notebooks, SLOs.
818
833
:type filter_related_assets: bool, optional
834
+
:param include: Relationship data to include in the response. Use ``metric_volumes`` to include indexed and ingested volumes.
835
+
:type include: MetricVolumesInclude, optional
836
+
:param sort: Sort metrics by ingested or indexed volume. Use ``-`` for descending order.
0 commit comments