Skip to content

Monitoring

Gridy ID Service Event Monitoring allows Administrators to monitor & receive notifications when certain events occur.

Event monitoring & alerting are disabled by default for all API account types. Use the CLI to enable both event monitoring & alerting to start receiving alerts.

See the current list of events monitored below:

Note: Monitoring & Alerting is not available to Free service accounts.

Monitored Events

event enabled description
onNewChallengetrueMonitor new challenge request events.
onCancelChallengetrueMonitor cancel challenge request events.
onNewQRKeysChallengefalseMonitor new QR Keys challenge request events.
onNewCubeChallengefalseMonitor new Cube ID challenge request events.
onNewVoiceChallengefalseMonitor new Voice ID challenge request events.
onNewFaceChallengefalseMonitor new Face ID challenge request events.
onNewPinChallengefalseMonitor new Pin ID challenge request events.
onVerifyCodefalseMonitor successful authentication code verification events.
onQRKeysAuthfalseMonitor successful QR Keys authentication events.
onVoiceAuthfalseMonitor successful Voice ID authentication events.
onFaceAuthfalseMonitor successful Face ID authentication events.
onCubeAuthfalseMonitor successful Cube ID authentication events.
onPinAuthfalseMonitor successful Pin ID authentication events.
onFailedAttemptfalseMonitor failed authentication attempt events.
onMaxAttemptsfalseMonitor max failed authentication attempt events.
onAcctBlockedfalse Monitor account blocked events.
onAcctLockdownfalseMonitor account temporary lockdown events.
onBlockedCheckfalse Monitor Blocked service request events.
onIPAddrBlockfalse Monitor IP address blocked events.
onIPRangeBlockfalse Monitor IP range blocked events.
onUserBlockfalseMonitor User blocked events.
onTorExitNodeBlockfalseMonitor ToR exit node blocked events.
onPublicProxyBlockfalse Monitor Public Proxy blocked events.
onAnonymousProxyBlockfalseMonitor Anonymous Proxy blocked events
onGeoIPCtryBlock falseMonitor Geo IP Country range blocked events.
onApi500StatusfalseMonitor API Intenral error events (Http 500 errors).
onApi400StatusfalseMonitor API User error events (Http 400 errors).
onApi200StatusfalseMonitor API Success events (Http 200 status).
onApi202StatusfalseMonitor API Accepted events (Http 202 status).
onApi204StatusfalseMonitor API No content events (Http 204 status).

Note: We are adding new events all the time, so check back

Settings

Monitoring Enabled

Enable Gridy ID service event monitoring (default: false )

java -jar gridy-admin-cli.jar settings update --data '{ "monitoring-enabled": true  }'

Monitor Events

Monitor Gridy ID service events (default: None )

Event Types:

  • onNewChallenge
  • onNewQRKeysChallenge
  • onNewVoiceChallenge
  • onNewFaceChallenge
  • onNewCubeChallenge
  • onNewPinChallenge
  • onCancelChallenge
  • onVerifyCode
  • onQRKeysAuth
  • onVoiceAuth
  • onFaceAuth
  • onCubeAuth
  • onPinAuth
  • onFailedAttempt
  • onMaxAttempts
  • onAcctBlocked
  • onBlockedCheck
  • onIPAddrBlock
  • onIPRangeBlock
  • onUserBlock
  • onTorExitNodeBlock
  • onPublicProxyBlock
  • onAnonymousProxyBlock
  • onGeoIPCtryBlock
  • onApi500Status
  • onApi400Status
  • onApi200Status
  • onApi202Status
  • onApi204Status
java -jar gridy-admin-cli.jar settings <add|remove> --data '{ "monitor-events": "['onNewChallenge','onVerifyCode']" }'

Wildcards

Use the * wildcard to add/remove all monitor events

Example

java -jar gridy-admin-cli.jar settings <add|remove> --data '{ "monitor-events": "['*']"  }'