dc stats
Description
Get authentication statistics showing passed vs failed counts over a time window. Essential for quick health checks and identifying authentication issues.
Options
| Option | Default | Description |
|---|---|---|
|
|
Hours to look back (1-720) |
|
Use the global
|
Usage
# Last 24 hours (default)
netapi ise dc stats
# Last hour only
netapi ise dc stats --hours 1
# Last week
netapi ise dc stats --hours 168
# JSON for dashboards
netapi ise dc --format json stats
Sample Output
Authentication Statistics (Last 24 Hours)
──────────────────────────────────────────
Passed: 1,247
Failed: 156
Total: 1,403
Success Rate: 88.9%
JSON output:
{
"hours": 24,
"passed": 1247,
"failed": 156,
"total": 1403,
"success_rate": 88.88
}