In the Ziti Admin Console it's possible for me to see the online status for an identity.
Is it possible to get the online status using the ziti
CLI tool or anywhere else ?
In the Ziti Admin Console it's possible for me to see the online status for an identity.
Is it possible to get the online status using the ziti
CLI tool or anywhere else ?
Everything the ZAC does is based around the APIs provided by the controller. Generally speaking, ZAC doesn't make more than one request but sometimes it might.
For this, you would use the "json" response from the CLI. something like:
ziti edge list identities 'name="forwarder"' -j \
| jq -r '.data[] | [.edgeRouterConnectionStatus, .hasEdgeRouterConnection, .hasApiSession] | @csv'
"online",true,true
hth
Great thanks @TheLumberjack !