Skip to content

Alerting

Gridy Alerting lets Administrators receive notifications when monitored events occur.

Gridy Alerting currently supports Email & Webhook alerts, see examples below to setup both alerting channels.

Monitoring & Alerting are disabled by default for all API account types. Use the CLI to enable both Monitoring & Alerting to start receiving alerts.

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

Settings

Enable Alerting

Enable event alerting (default: false )

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

Enable Email Alerts

Enable email alerting (default: false )

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

Enable Webhook Alerts

Enable webhook alerting (default: false )

Note: Available from Q2 2025

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

Email Alerts - Primary Email Address

Send email alerts to this email address (default: None )

java -jar gridy-admin-cli.jar settings update --data '{ "email-primary": 'user@domain.tld'  }'

Email Alerts - CC Address

Send a copy of all email alerts to this email address (default: None )

java -jar gridy-admin-cli.jar settings update --data '{ "email-cc": 'user@domain.tld'  }'

Email Alerts - BCC Address

Send a blind copy of all email alerts to this email address (default: None )

java -jar gridy-admin-cli.jar settings update --data '{ "email-bcc": 'user@domain.tld'  }'

Email Alerts - Subject Prefix

Add a subject ... to all email alerts (default: [GRIDY-ALERT] )

Note: Available from Q2 2025

java -jar gridy-admin-cli.jar settings update --data '{ "email-subject": ''  }'

Email Alerts - Email Type

Receive all email alerts as either plain text or Html emails (default: txt )

Note: Available from Q2 2025

Options

  • HTML -
  • TXT -
java -jar gridy-admin-cli.jar settings update --data '{ "email-type": 'html'  }'

Webhook Alerts - URL

Incoming Webhook URL (default: None )

java -jar gridy-admin-cli.jar settings update --data '{ "webhook-url": 'https://webhookdomain.tld/webhookpath'}'

Webhook Alerts - Security

Inbound Webhook Security (default: None )

Supported:

  • None
  • Basic - Base64 encoded username/password sent in HTTP Authorization header:
    ie. Authorization: Basic base64(username:password)
java -jar gridy-admin-cli.jar settings update --data '{ "webhook-auth": 'Basic'  }'

Webhook Basic Security - Username

Username required when publishing to Inbound Webhook secured with Basic authentication (default: None )

java -jar gridy-admin-cli.jar settings update --data '{ "webhook-username": '<your username>'  }'

Webhook Basic Security - Password

Password required when publishing to Inbound Webhook secured with Basic authentication (default: None )

java -jar gridy-admin-cli.jar settings update --data '{ "webhook-password": '<your password>'  }'