mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-05 23:45:30 +00:00
Some checks failed
Python CI / build (push) Has been cancelled
Co-authored-by: API Team <api-team@thousandeyes.com>
2.0 KiB
2.0 KiB
ApiMultiMetricColumn
Defines a column within a table that aggregates and displays various metrics (Multi-Metric table).
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | [optional] | |
| data_source | MultiMetricsTableDatasource | [optional] | |
| metric_group | MetricGroup | [optional] | |
| direction | DashboardMetricDirection | [optional] | |
| metric | DashboardMetric | [optional] | |
| filters | Dict[str, List[object]] | (Optional) Specifies the filters applied to the widget. When present, the `filters` property displays. Each filter object has two properties: `filterProperty` and `filterValue`. The `filterProperty` can be values like `AGENT`, `ENDPOINT_MACHINE_ID`, `TEST`, `MONITOR`, etc. The `filterValue` represents an identifier array of the selected property. | [optional] |
| measure | ApiWidgetMeasure | [optional] | |
| links | SelfLinks | [optional] |
Example
from thousandeyes_sdk.dashboards.models.api_multi_metric_column import ApiMultiMetricColumn
# TODO update the JSON string below
json = "{}"
# create an instance of ApiMultiMetricColumn from a JSON string
api_multi_metric_column_instance = ApiMultiMetricColumn.from_json(json)
# print the JSON string representation of the object
print(ApiMultiMetricColumn.to_json())
# convert the object into a dict
api_multi_metric_column_dict = api_multi_metric_column_instance.to_dict()
# create an instance of ApiMultiMetricColumn from a dict
api_multi_metric_column_from_dict = ApiMultiMetricColumn.from_dict(api_multi_metric_column_dict)