> For the complete documentation index, see [llms.txt](https://docs.meeco.me/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.meeco.me/openapi-docs/svx-api/monitoring.md).

# Monitoring

## Get deployed service version information

> Endpoint to read deployed service version information.<br>

```json
{"openapi":"3.1.0","info":{"title":"SVX Wallet API","version":"4.0.1"},"servers":[{"url":"https://zyfla-wallet-sandbox.meeco.cloud","description":"SVX Wallet deployment (relative)"}],"security":[],"paths":{"/version":{"get":{"summary":"Get deployed service version information","description":"Endpoint to read deployed service version information.\n","operationId":"AppController_getVersion","parameters":[],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/VersionDto"}}},"description":""}},"tags":["Monitoring"]}}},"components":{"schemas":{"VersionDto":{"properties":{"component":{"$ref":"#/components/schemas/Component"}},"required":["component"],"type":"object"},"Component":{"properties":{"api_version":{"type":"string"},"git_commit":{"type":"string"},"name":{"type":"string"}},"required":["api_version","name","git_commit"],"type":"object"}}}}
```

## Get deployed service status information

> Endpoint to read deployed service status information.<br>

```json
{"openapi":"3.1.0","info":{"title":"SVX Wallet API","version":"4.0.1"},"servers":[{"url":"https://zyfla-wallet-sandbox.meeco.cloud","description":"SVX Wallet deployment (relative)"}],"security":[{},{"bearerAuth":[]},{"mutualTLS":[]}],"components":{"securitySchemes":{"bearerAuth":{"bearerFormat":"JWT","scheme":"bearer","type":"http"},"mutualTLS":{"type":"mutualTLS"}},"schemas":{"StatusDto":{"properties":{"app":{"$ref":"#/components/schemas/App"},"appsignal":{"$ref":"#/components/schemas/AppSignal"},"database":{"$ref":"#/components/schemas/Database"},"redis":{"$ref":"#/components/schemas/Redis"},"healthCheck":{"$ref":"#/components/schemas/HealthCheck"}},"required":["app","appsignal","database","redis","healthCheck"],"type":"object"},"App":{"properties":{"component_name":{"type":"string"},"current_api_version":{"type":"string"},"git_commit":{"type":"string"},"node":{"type":"string"},"npm_config_user_agent":{"type":"string"},"npm_lifecycle_event":{"type":"string"},"npm_node_execpath":{"type":"string"}},"required":["component_name","current_api_version","git_commit","npm_config_user_agent","node","npm_lifecycle_event","npm_node_execpath"],"type":"object"},"AppSignal":{"properties":{"active":{"type":"string"},"env":{"type":"string"},"name":{"type":"string"}},"required":["active","name","env"],"type":"object"},"Database":{"properties":{"host":{"type":"string"},"name":{"type":"string"},"port":{"type":"string"},"user":{"type":"string"}},"required":["host","port","name","user"],"type":"object"},"Redis":{"properties":{"host":{"type":"string"},"port":{"type":"string"},"db":{"type":"string"},"tlsEnabled":{"type":"boolean"}},"required":["host","port","db","tlsEnabled"],"type":"object"},"HealthCheck":{"properties":{"database":{"type":"object"},"disk":{"type":"object"},"memory":{"type":"object"}},"required":["database","memory","disk"],"type":"object"}}},"paths":{"/system/status":{"get":{"summary":"Get deployed service status information","description":"Endpoint to read deployed service status information.\n","operationId":"AppController_getSystemStatus","parameters":[],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/StatusDto"}}},"description":""}},"tags":["Monitoring"]}}}}
```
