The Health service is designed to allow you to both validate and monitor that your Appwrite instance and all of its internal components are up and responsive.
https://cloud.appwrite.io/v1
GET /health
require 'appwrite'
include Appwrite
client = Client.new
.set_endpoint('https://cloud.appwrite.io/v1') # Your API Endpoint
.set_project('<YOUR_PROJECT_ID>') # Your project ID
.set_key('<YOUR_API_KEY>') # Your secret API key
health = Health.new(client)
result = health.get()
GET /health/anti-virus
require 'appwrite'
include Appwrite
client = Client.new
.set_endpoint('https://cloud.appwrite.io/v1') # Your API Endpoint
.set_project('<YOUR_PROJECT_ID>') # Your project ID
.set_key('<YOUR_API_KEY>') # Your secret API key
health = Health.new(client)
result = health.get_antivirus()
Get cache
Check the Appwrite in-memory cache servers are up and connection is successful.
Response
200
GET /health/cache
require 'appwrite'
include Appwrite
client = Client.new
.set_endpoint('https://cloud.appwrite.io/v1') # Your API Endpoint
.set_project('<YOUR_PROJECT_ID>') # Your project ID
.set_key('<YOUR_API_KEY>') # Your secret API key
health = Health.new(client)
result = health.get_cache()
Get the SSL certificate for a domain
Get the SSL certificate for a domain
Request
domain string
Response
GET /health/certificate
require 'appwrite'
include Appwrite
client = Client.new
.set_endpoint('https://cloud.appwrite.io/v1') # Your API Endpoint
.set_project('<YOUR_PROJECT_ID>') # Your project ID
.set_key('<YOUR_API_KEY>') # Your secret API key
health = Health.new(client)
result = health.get_certificate(
domain: '' # optional
)
GET /health/db
require 'appwrite'
include Appwrite
client = Client.new
.set_endpoint('https://cloud.appwrite.io/v1') # Your API Endpoint
.set_project('<YOUR_PROJECT_ID>') # Your project ID
.set_key('<YOUR_API_KEY>') # Your secret API key
health = Health.new(client)
result = health.get_db()
GET /health/pubsub
require 'appwrite'
include Appwrite
client = Client.new
.set_endpoint('https://cloud.appwrite.io/v1') # Your API Endpoint
.set_project('<YOUR_PROJECT_ID>') # Your project ID
.set_key('<YOUR_API_KEY>') # Your secret API key
health = Health.new(client)
result = health.get_pub_sub()
Get queue
Check the Appwrite queue messaging servers are up and connection is successful.
Response
200
GET /health/queue
require 'appwrite'
include Appwrite
client = Client.new
.set_endpoint('https://cloud.appwrite.io/v1') # Your API Endpoint
.set_project('<YOUR_PROJECT_ID>') # Your project ID
.set_key('<YOUR_API_KEY>') # Your secret API key
health = Health.new(client)
result = health.get_queue()
Get builds queue
Get the number of builds that are waiting to be processed in the Appwrite internal queue server.
Request
threshold Queue size threshold. When hit (equal or higher), endpoint returns server error. Default value is 5000.
Response
200
GET /health/queue/builds
require 'appwrite'
include Appwrite
client = Client.new
.set_endpoint('https://cloud.appwrite.io/v1') # Your API Endpoint
.set_project('<YOUR_PROJECT_ID>') # Your project ID
.set_key('<YOUR_API_KEY>') # Your secret API key
health = Health.new(client)
result = health.get_queue_builds(
threshold: null # optional
)
Get certificates queue
Get the number of certificates that are waiting to be issued against Letsencrypt in the Appwrite internal queue server.
Request
threshold Queue size threshold. When hit (equal or higher), endpoint returns server error. Default value is 5000.
Response
200
GET /health/queue/certificates
require 'appwrite'
include Appwrite
client = Client.new
.set_endpoint('https://cloud.appwrite.io/v1') # Your API Endpoint
.set_project('<YOUR_PROJECT_ID>') # Your project ID
.set_key('<YOUR_API_KEY>') # Your secret API key
health = Health.new(client)
result = health.get_queue_certificates(
threshold: null # optional
)
Get databases queue
Get the number of database changes that are waiting to be processed in the Appwrite internal queue server.
Request
name Queue name for which to check the queue size
threshold Queue size threshold. When hit (equal or higher), endpoint returns server error. Default value is 5000.
Response
200
GET /health/queue/databases
require 'appwrite'
include Appwrite
client = Client.new
.set_endpoint('https://cloud.appwrite.io/v1') # Your API Endpoint
.set_project('<YOUR_PROJECT_ID>') # Your project ID
.set_key('<YOUR_API_KEY>') # Your secret API key
health = Health.new(client)
result = health.get_queue_databases(
name: '<NAME>', # optional
threshold: null # optional
)
Get deletes queue
Get the number of background destructive changes that are waiting to be processed in the Appwrite internal queue server.
Request
threshold Queue size threshold. When hit (equal or higher), endpoint returns server error. Default value is 5000.
Response
200
GET /health/queue/deletes
require 'appwrite'
include Appwrite
client = Client.new
.set_endpoint('https://cloud.appwrite.io/v1') # Your API Endpoint
.set_project('<YOUR_PROJECT_ID>') # Your project ID
.set_key('<YOUR_API_KEY>') # Your secret API key
health = Health.new(client)
result = health.get_queue_deletes(
threshold: null # optional
)
Get number of failed queue jobs
Returns the amount of failed jobs in a given queue.
Request
name requiredThe name of the queue
threshold Queue size threshold. When hit (equal or higher), endpoint returns server error. Default value is 5000.
Response
200
GET /health/queue/failed/{name}
require 'appwrite'
include Appwrite
include Appwrite::Enums
client = Client.new
.set_endpoint('https://cloud.appwrite.io/v1') # Your API Endpoint
.set_project('<YOUR_PROJECT_ID>') # Your project ID
.set_key('<YOUR_API_KEY>') # Your secret API key
health = Health.new(client)
result = health.get_failed_jobs(
name: ::V1_DATABASE,
threshold: null # optional
)
Get functions queue
Get the number of function executions that are waiting to be processed in the Appwrite internal queue server.
Request
threshold Queue size threshold. When hit (equal or higher), endpoint returns server error. Default value is 5000.
Response
200
GET /health/queue/functions
require 'appwrite'
include Appwrite
client = Client.new
.set_endpoint('https://cloud.appwrite.io/v1') # Your API Endpoint
.set_project('<YOUR_PROJECT_ID>') # Your project ID
.set_key('<YOUR_API_KEY>') # Your secret API key
health = Health.new(client)
result = health.get_queue_functions(
threshold: null # optional
)
Get logs queue
Get the number of logs that are waiting to be processed in the Appwrite internal queue server.
Request
threshold Queue size threshold. When hit (equal or higher), endpoint returns server error. Default value is 5000.
Response
200
GET /health/queue/logs
require 'appwrite'
include Appwrite
client = Client.new
.set_endpoint('https://cloud.appwrite.io/v1') # Your API Endpoint
.set_project('<YOUR_PROJECT_ID>') # Your project ID
.set_key('<YOUR_API_KEY>') # Your secret API key
health = Health.new(client)
result = health.get_queue_logs(
threshold: null # optional
)
Get mails queue
Get the number of mails that are waiting to be processed in the Appwrite internal queue server.
Request
threshold Queue size threshold. When hit (equal or higher), endpoint returns server error. Default value is 5000.
Response
200
GET /health/queue/mails
require 'appwrite'
include Appwrite
client = Client.new
.set_endpoint('https://cloud.appwrite.io/v1') # Your API Endpoint
.set_project('<YOUR_PROJECT_ID>') # Your project ID
.set_key('<YOUR_API_KEY>') # Your secret API key
health = Health.new(client)
result = health.get_queue_mails(
threshold: null # optional
)
Get messaging queue
Get the number of messages that are waiting to be processed in the Appwrite internal queue server.
Request
threshold Queue size threshold. When hit (equal or higher), endpoint returns server error. Default value is 5000.
Response
200
GET /health/queue/messaging
require 'appwrite'
include Appwrite
client = Client.new
.set_endpoint('https://cloud.appwrite.io/v1') # Your API Endpoint
.set_project('<YOUR_PROJECT_ID>') # Your project ID
.set_key('<YOUR_API_KEY>') # Your secret API key
health = Health.new(client)
result = health.get_queue_messaging(
threshold: null # optional
)
Get migrations queue
Get the number of migrations that are waiting to be processed in the Appwrite internal queue server.
Request
threshold Queue size threshold. When hit (equal or higher), endpoint returns server error. Default value is 5000.
Response
200
GET /health/queue/migrations
require 'appwrite'
include Appwrite
client = Client.new
.set_endpoint('https://cloud.appwrite.io/v1') # Your API Endpoint
.set_project('<YOUR_PROJECT_ID>') # Your project ID
.set_key('<YOUR_API_KEY>') # Your secret API key
health = Health.new(client)
result = health.get_queue_migrations(
threshold: null # optional
)
Get usage queue
Get the number of metrics that are waiting to be processed in the Appwrite internal queue server.
Request
threshold Queue size threshold. When hit (equal or higher), endpoint returns server error. Default value is 5000.
Response
200
GET /health/queue/usage
require 'appwrite'
include Appwrite
client = Client.new
.set_endpoint('https://cloud.appwrite.io/v1') # Your API Endpoint
.set_project('<YOUR_PROJECT_ID>') # Your project ID
.set_key('<YOUR_API_KEY>') # Your secret API key
health = Health.new(client)
result = health.get_queue_usage(
threshold: null # optional
)
Get usage dump queue
Get the number of projects containing metrics that are waiting to be processed in the Appwrite internal queue server.
Request
threshold Queue size threshold. When hit (equal or higher), endpoint returns server error. Default value is 5000.
Response
200
GET /health/queue/usage-dump
require 'appwrite'
include Appwrite
client = Client.new
.set_endpoint('https://cloud.appwrite.io/v1') # Your API Endpoint
.set_project('<YOUR_PROJECT_ID>') # Your project ID
.set_key('<YOUR_API_KEY>') # Your secret API key
health = Health.new(client)
result = health.get_queue_usage_dump(
threshold: null # optional
)
Get webhooks queue
Get the number of webhooks that are waiting to be processed in the Appwrite internal queue server.
Request
threshold Queue size threshold. When hit (equal or higher), endpoint returns server error. Default value is 5000.
Response
200
GET /health/queue/webhooks
require 'appwrite'
include Appwrite
client = Client.new
.set_endpoint('https://cloud.appwrite.io/v1') # Your API Endpoint
.set_project('<YOUR_PROJECT_ID>') # Your project ID
.set_key('<YOUR_API_KEY>') # Your secret API key
health = Health.new(client)
result = health.get_queue_webhooks(
threshold: null # optional
)
GET /health/storage
require 'appwrite'
include Appwrite
client = Client.new
.set_endpoint('https://cloud.appwrite.io/v1') # Your API Endpoint
.set_project('<YOUR_PROJECT_ID>') # Your project ID
.set_key('<YOUR_API_KEY>') # Your secret API key
health = Health.new(client)
result = health.get_storage()
Get local storage
Check the Appwrite local storage device is up and connection is successful.
Response
200
GET /health/storage/local
require 'appwrite'
include Appwrite
client = Client.new
.set_endpoint('https://cloud.appwrite.io/v1') # Your API Endpoint
.set_project('<YOUR_PROJECT_ID>') # Your project ID
.set_key('<YOUR_API_KEY>') # Your secret API key
health = Health.new(client)
result = health.get_storage_local()
Get time
Check the Appwrite server time is synced with Google remote NTP server. We use this technology to smoothly handle leap seconds with no disruptive events. The Network Time Protocol (NTP) is used by hundreds of millions of computers and devices to synchronize their clocks over the Internet. If your computer sets its own clock, it likely uses NTP.
Response
200
GET /health/time
require 'appwrite'
include Appwrite
client = Client.new
.set_endpoint('https://cloud.appwrite.io/v1') # Your API Endpoint
.set_project('<YOUR_PROJECT_ID>') # Your project ID
.set_key('<YOUR_API_KEY>') # Your secret API key
health = Health.new(client)
result = health.get_time()