mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 06:26:51 +00:00
5.3 KiB
5.3 KiB
ApiWidget
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | Identifier of the widget. | [optional] [readonly] |
| title | str | Title of the widget | [optional] |
| visual_mode | VisualMode | [optional] | |
| embed_url | str | When `isEmbedded` is set to `true`, an `embedUrl` is provided. | [optional] [readonly] |
| is_embedded | bool | Set to `true` if widget is marked as embedded; otherwise, set to `false`. | [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] | |
| fixed_timespan | ApiDuration | [optional] | |
| api_link | str | [optional] [readonly] | |
| should_exclude_alert_suppression_windows | bool | Excludes alert suppression window data if set to `true`. | [optional] |
| links | SelfLinks | [optional] | |
| type | str | Time Series: Line widget type. | |
| agents | LegacyAgentWidgetType | [optional] | |
| show | LegacyAgentWidgetShow | [optional] | |
| data_source | TimeseriesDatasource | [optional] | |
| alert_types | **List[LegacyAlertListAlertType]** | List of alert types configured in the widget, an empty list means all alert types. | [optional] |
| limit_to | int | Limit the number of alerts displayed in the widget. | [optional] |
| active_within | ActiveWithin | [optional] | |
| min_scale | float | Minimum scale configured in the widget. | [optional] |
| max_scale | float | Maximum scale configured in the widget. | [optional] |
| unit | ApiWidgetFixedYScalePrefix | [optional] | |
| group_by | ApiAggregateProperty | [optional] | |
| cards | ApiAggregateProperty | [optional] | |
| group_cards_by | ApiAggregateProperty | [optional] | |
| columns | int | Number of columns: 1 or 2. | [optional] |
| limit | int | Limit configured in the widget. | [optional] |
| sort_by | LegacyWidgetSortProperty | [optional] | |
| sort_direction | LegacyWidgetSortDirection | [optional] | |
| sort_group_by | LegacyWidgetSortProperty | [optional] | |
| sort_group_direction | LegacyWidgetSortDirection | [optional] | |
| is_geo_map_per_test | bool | Indicates whether a separate map is displayed for each test within the widget. When set to true, individual maps are generated. | [optional] |
| axis_group_by | ApiAggregateProperty | [optional] | |
| show_labels | bool | [optional] | |
| is_horizontal_bar_chart | bool | Set to `true` to display bars horizontally in the widget. | [optional] |
| compare_to_previous_value | bool | [optional] | |
| row_group_by | ApiAggregateProperty | [optional] | |
| multi_metric_columns | **List[ApiMultiMetricColumn]** | [optional] | |
| number_cards | **List[ApiNumbersCard]** | [optional] | |
| column_group_by | ApiAggregateProperty | [optional] | |
| filter | ApiWidgetFilterApiTestTableFilterKey | [optional] | |
| exclude | ApiWidgetFilterApiTestTableFilterKey | [optional] | |
| show_timeseries_overall_baseline | bool | Displays the overall baseline if set to `true`. | [optional] |
| is_timeseries_one_chart_per_line | bool | Displays a separate chart for each line if set to `true`. | [optional] |
Example
from thousandeyes_sdk.dashboards.models.api_widget import ApiWidget
# TODO update the JSON string below
json = "{}"
# create an instance of ApiWidget from a JSON string
api_widget_instance = ApiWidget.from_json(json)
# print the JSON string representation of the object
print(ApiWidget.to_json())
# convert the object into a dict
api_widget_dict = api_widget_instance.to_dict()
# create an instance of ApiWidget from a dict
api_widget_from_dict = ApiWidget.from_dict(api_widget_dict)