From a7b840d140e253a42586078a015a0737f5347ae8 Mon Sep 17 00:00:00 2001 From: Michael Barz Date: Tue, 9 Jan 2024 07:54:18 +0000 Subject: [PATCH] Automated changelog update [skip ci] --- CHANGELOG.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7f16fe832f..68e5684583 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,31 @@ +# Changelog for [unreleased] (UNRELEASED) + +The following sections list the changes for unreleased. + +[unreleased]: https://github.com/owncloud/ocis/compare/v4.0.5...master + +## Summary + +* Bugfix - Fix RED metrics on the metrics endpoint: [#7994](https://github.com/owncloud/ocis/pull/7994) + +## Details + +* Bugfix - Fix RED metrics on the metrics endpoint: [#7994](https://github.com/owncloud/ocis/pull/7994) + + We connected some metrics to the metrics endpoint to support the RED method for monitoring + microservices. + + - Request Rate: The number of requests per second. The total count of requests is available + under `ocis_proxy_requests_total`. - Error Rate: The number of failed requests per second. + The total count of failed requests is available under `ocis_proxy_errors_total`. - + Duration: The amount of time each request takes. The duration of all requests is available + under `ocis_proxy_request_duration_seconds`. This is a histogram metric, so it also + provides information about the distribution of request durations. + + The metrics are available under the following paths: `PROXY_DEBUG_ADDR/metrics` in a + prometheus compatible format and maybe secured by `PROXY_DEBUG_TOKEN`. + + https://github.com/owncloud/ocis/pull/7994 # Changelog for [4.0.5] (2023-12-21) The following sections list the changes for 4.0.5.