dc profiler
Description
Get endpoint counts grouped by profiler policy. Shows how many endpoints are classified under each ISE profiler policy. Essential for inventory management and understanding your network device distribution.
Options
This command has no options.
|
Use the global
|
Usage
# Default table output
netapi ise dc profiler
# JSON for dashboards/scripts
netapi ise dc --format json profiler
# YAML output
netapi ise dc --format yaml profiler
Sample Output
Endpoint Counts by Profiler Policy
────────────────────────────────────────
Policy Count
────────────────────────────────────────
Windows10-Workstation 487
Apple-iPhone 312
Cisco-IP-Phone-79xx 156
Android-Device 89
Apple-MacBook 67
Linux-Workstation 45
Printer 38
Unknown 112
────────────────────────────────────────
Total 1,306
JSON output:
[
{"policy": "Windows10-Workstation", "count": 487},
{"policy": "Apple-iPhone", "count": 312},
{"policy": "Cisco-IP-Phone-79xx", "count": 156},
{"policy": "Android-Device", "count": 89}
]
Use Cases
Dashboard Integration
# JSON for Grafana, monitoring scripts
netapi ise dc --format json profiler | jq '.[] | {policy, count}'
Track Unknown Devices
# How many unknowns?
netapi ise dc --format json profiler | jq '.[] | select(.policy == "Unknown") | .count'
Profiler Policies vs Device Types
| Command | Returns |
|---|---|
|
ISE profiler policy names (Windows10-Workstation, Cisco-IP-Phone-79xx, etc.) |
|
Device type categories (Workstation, Phone, Printer, etc.) |
Profiler policies are more specific; device types are broader categories.
See Also
-
device-types - Counts by device type category
-
endpoints - List endpoints with
--policyfilter -
ERS profiler-profiles - Manage profiler policies