Archived
This forum has been archived. Please start a new discussion on GitHub.
How to filter IceMX metrics by remoteAddress

in Help Center
We're updating our statistics after moving to ICE 3.7 and are having difficulty generating the appropriate metrics view so that we can filter by remote address. We're looking for sentBytes and receivedBytes per remote address. Is there an example available?
0
Comments
-
Hi Greg,
Did you check out this technical article which provides additional information and examples https://doc.zeroc.com/technical-articles/general-topics/ice-management-extension-and-metrics?
It suggests to create a metrics view named "PerHost" where metrics are grouped by
remoteHost
which should be equivalent to the remote address:IceMX.Metrics.PerHost.GroupBy=remoteHost
If you are only interested in connection metrics, you could restrict this view to the connection metrics map:
IceMX.Metrics.PerHost.Map.Connection.GroupBy=remoteHost
Cheers,
Benoit.0