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
from appwrite.client import Client
from appwrite.services.health import Health
client = Client()
(client
.set_endpoint('https://cloud.appwrite.io/v1') # Your API Endpoint
.set_project('5df5acd0d48c2') # Your project ID
.set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
)
health = Health(client)
result = health.get()
GET /health/anti-virus
from appwrite.client import Client
from appwrite.services.health import Health
client = Client()
(client
.set_endpoint('https://cloud.appwrite.io/v1') # Your API Endpoint
.set_project('5df5acd0d48c2') # Your project ID
.set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
)
health = Health(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
from appwrite.client import Client
from appwrite.services.health import Health
client = Client()
(client
.set_endpoint('https://cloud.appwrite.io/v1') # Your API Endpoint
.set_project('5df5acd0d48c2') # Your project ID
.set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
)
health = Health(client)
result = health.get_cache()
GET /health/db
from appwrite.client import Client
from appwrite.services.health import Health
client = Client()
(client
.set_endpoint('https://cloud.appwrite.io/v1') # Your API Endpoint
.set_project('5df5acd0d48c2') # Your project ID
.set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
)
health = Health(client)
result = health.get_db()
GET /health/pubsub
from appwrite.client import Client
from appwrite.services.health import Health
client = Client()
(client
.set_endpoint('https://cloud.appwrite.io/v1') # Your API Endpoint
.set_project('5df5acd0d48c2') # Your project ID
.set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
)
health = Health(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
from appwrite.client import Client
from appwrite.services.health import Health
client = Client()
(client
.set_endpoint('https://cloud.appwrite.io/v1') # Your API Endpoint
.set_project('5df5acd0d48c2') # Your project ID
.set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
)
health = Health(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
from appwrite.client import Client
from appwrite.services.health import Health
client = Client()
(client
.set_endpoint('https://cloud.appwrite.io/v1') # Your API Endpoint
.set_project('5df5acd0d48c2') # Your project ID
.set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
)
health = Health(client)
result = health.get_queue_builds()
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
from appwrite.client import Client
from appwrite.services.health import Health
client = Client()
(client
.set_endpoint('https://cloud.appwrite.io/v1') # Your API Endpoint
.set_project('5df5acd0d48c2') # Your project ID
.set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
)
health = Health(client)
result = health.get_queue_certificates()
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
from appwrite.client import Client
from appwrite.services.health import Health
client = Client()
(client
.set_endpoint('https://cloud.appwrite.io/v1') # Your API Endpoint
.set_project('5df5acd0d48c2') # Your project ID
.set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
)
health = Health(client)
result = health.get_queue_databases()
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
from appwrite.client import Client
from appwrite.services.health import Health
client = Client()
(client
.set_endpoint('https://cloud.appwrite.io/v1') # Your API Endpoint
.set_project('5df5acd0d48c2') # Your project ID
.set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
)
health = Health(client)
result = health.get_queue_deletes()
Get functions queue
Request
threshold Queue size threshold. When hit (equal or higher), endpoint returns server error. Default value is 5000.
Response
200
GET /health/queue/functions
from appwrite.client import Client
from appwrite.services.health import Health
client = Client()
(client
.set_endpoint('https://cloud.appwrite.io/v1') # Your API Endpoint
.set_project('5df5acd0d48c2') # Your project ID
.set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
)
health = Health(client)
result = health.get_queue_functions()
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
from appwrite.client import Client
from appwrite.services.health import Health
client = Client()
(client
.set_endpoint('https://cloud.appwrite.io/v1') # Your API Endpoint
.set_project('5df5acd0d48c2') # Your project ID
.set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
)
health = Health(client)
result = health.get_queue_logs()
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
from appwrite.client import Client
from appwrite.services.health import Health
client = Client()
(client
.set_endpoint('https://cloud.appwrite.io/v1') # Your API Endpoint
.set_project('5df5acd0d48c2') # Your project ID
.set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
)
health = Health(client)
result = health.get_queue_mails()
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
from appwrite.client import Client
from appwrite.services.health import Health
client = Client()
(client
.set_endpoint('https://cloud.appwrite.io/v1') # Your API Endpoint
.set_project('5df5acd0d48c2') # Your project ID
.set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
)
health = Health(client)
result = health.get_queue_messaging()
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
from appwrite.client import Client
from appwrite.services.health import Health
client = Client()
(client
.set_endpoint('https://cloud.appwrite.io/v1') # Your API Endpoint
.set_project('5df5acd0d48c2') # Your project ID
.set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
)
health = Health(client)
result = health.get_queue_migrations()
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
from appwrite.client import Client
from appwrite.services.health import Health
client = Client()
(client
.set_endpoint('https://cloud.appwrite.io/v1') # Your API Endpoint
.set_project('5df5acd0d48c2') # Your project ID
.set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
)
health = Health(client)
result = health.get_queue_webhooks()
Get local storage
Check the Appwrite local storage device is up and connection is successful.
Response
200
GET /health/storage/local
from appwrite.client import Client
from appwrite.services.health import Health
client = Client()
(client
.set_endpoint('https://cloud.appwrite.io/v1') # Your API Endpoint
.set_project('5df5acd0d48c2') # Your project ID
.set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
)
health = Health(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
from appwrite.client import Client
from appwrite.services.health import Health
client = Client()
(client
.set_endpoint('https://cloud.appwrite.io/v1') # Your API Endpoint
.set_project('5df5acd0d48c2') # Your project ID
.set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
)
health = Health(client)
result = health.get_time()