I am currently working on extracting the Layer 7 details for a specific Tag and the extract is working well, accept for I want to combine the data from tcp accepted IP and tcp accepted layer 7, so I assumed perhaps incorrectly that I could use the IP address as a Key in the Post for /metrics/Total however it did not seem to generate results, is this because the IP Address is not a key when working with the tcp_app_detail metric_catalog.
If it isn’t is there a way that I can look up what the available keys are, as they are listed in the Catalog.
The post I am making:
{
“from”: -604800000,
“until”: 0,
“metric_category”: “tcp_app_detail”,
“metric_specs”: [
{
“name”: “accepted”,
“key1”: “IP Address”
}
],
“object_type”: “device”,
“object_ids”: [
001,
002
],
“cycle”: “auto”
}
The Response;
{
“cycle”: “1hr”,
“node_id”: 4,
“clock”: 1669658400000,
“from”: 1669053600000,
“until”: 1669658400000,
“stats”: [
{
“oid”: -1,
“time”: 1669658400000,
“duration”: 608400000,
“values”: [
[]
]
}
]
}