···694694695695### Health Endpoint
696696697697-An endpoint for monitoring the health of sources/clients is available at GET `http://YourMultiScrobblerDomain/health`
697697+An endpoint for monitoring the health of sources/clients is available at GET `http://YourMultiScrobblerDomain/api/health`
698698699699* Returns `200 OK` when **everything** is working or `500 Internal Server Error` if **anything** is not
700700-* The plain url (`/health`) aggregates status of **all clients/sources** -- so any failing client/source will make status return 500
701701- * Use query params `type` or `name` to restrict client/sources aggregated IE `/health?type=spotify` or `/health?name=MyMaloja`
700700+* The plain url (`/api/health`) aggregates status of **all clients/sources** -- so any failing client/source will make status return 500
701701+ * Use query params `type` or `name` to restrict client/sources aggregated IE `/api/health?type=spotify` or `/api/health?name=MyMaloja`
702702* On 500 the response returns a JSON payload with `messages` array that describes any issues
703703- * For any clients/sources that require authentication `/health` will return 500 if they are **not authenticated**
704704- * For sources that poll (spotify, yt music, subsonic) `/health` will 500 if they are **not polling**
703703+ * For any clients/sources that require authentication `/api/health` will return 500 if they are **not authenticated**
704704+ * For sources that poll (spotify, yt music, subsonic) `/api/health` will 500 if they are **not polling**
705705+706706+### Prometheus
707707+708708+A [Prometheus](https://prometheus.io/) export endpoint is available at GET `http://YourMultiScrobblerDomain/api/metrics`
709709+710710+It includes metrics for:
711711+712712+* Count of discovered plays per [Source](/configuration/sources)
713713+* Count of Queued/Scrobbled/Deadletter scrobbles per [Client](/configuration/clients)
714714+* Number of issues per Source/Client
715715+ * If any of these metrics is > 0 it means your Source/Client is not operating normally
716716+717717+Additionally, general process metrics like cpu and memory usage can be enabled with the env `PROMETHEUS_FULL=true`