mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2026-09-19 08:03:56 +00:00
1.1 KiB
1.1 KiB
FiltersMetrics
Excludes case-sensitive metric names for the stream's data model version. An empty list clears existing metric exclusions.
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| excluded_metrics | FiltersMetricsExcludedMetrics |
Example
from thousandeyes_sdk.streaming.models.filters_metrics import FiltersMetrics
# TODO update the JSON string below
json = "{}"
# create an instance of FiltersMetrics from a JSON string
filters_metrics_instance = FiltersMetrics.from_json(json)
# print the JSON string representation of the object
print(FiltersMetrics.to_json())
# convert the object into a dict
filters_metrics_dict = filters_metrics_instance.to_dict()
# create an instance of FiltersMetrics from a dict
filters_metrics_from_dict = FiltersMetrics.from_dict(filters_metrics_dict)