Represents an array of call group item containing several attributes that describe its properties. The item includes fields such as cursor, metrics, name, and timestamp, which provide detailed information about the item.
| Name | Type | Description | Notes |
|---|---|---|---|
| cursor | object | Cursor to use between successive queries | |
| metrics | Dict[str, List[List[float]]] | Grouped metric details like `errors.mean`, `calls.sum`. It is usually a array of key-value pair. Format of key is `metric.aggregation.granularity`, for example: `latency.p75.360`. Format of value is `[earliest timestamp, value of key]`, for example: `[1725602720000, 0.013141001434936938]`. | |
| name | str | Name of the group. | |
| timestamp | int | Earliest timestamp of the call from the group | [optional] |
from instana_client.models.call_groups_item import CallGroupsItem
# TODO update the JSON string below
json = "{}"
# create an instance of CallGroupsItem from a JSON string
call_groups_item_instance = CallGroupsItem.from_json(json)
# print the JSON string representation of the object
print(CallGroupsItem.to_json())
# convert the object into a dict
call_groups_item_dict = call_groups_item_instance.to_dict()
# create an instance of CallGroupsItem from a dict
call_groups_item_from_dict = CallGroupsItem.from_dict(call_groups_item_dict)