Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-pages.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor Wiedler <iwiedler@gitlab.com>2021-03-04 20:26:59 +0300
committerIgor Wiedler <iwiedler@gitlab.com>2021-03-16 13:05:13 +0300
commitb2bebb9733332031654f203a42c9912831d49a15 (patch)
tree39beb853574b6beddb573371a36e2411304a7b9a /metrics
parent3d68f89c6ef3c7d3cd13838e4ab521301ac5754e (diff)
Instrument limit listener for saturation monitoring
Changelog: added
Diffstat (limited to 'metrics')
-rw-r--r--metrics/metrics.go25
1 files changed, 25 insertions, 0 deletions
diff --git a/metrics/metrics.go b/metrics/metrics.go
index 045ff26e..b17e8946 100644
--- a/metrics/metrics.go
+++ b/metrics/metrics.go
@@ -206,6 +206,27 @@ var (
Help: "The number of requests with unknown HTTP method which were rejected",
},
)
+
+ LimitListenerMaxConns = prometheus.NewGauge(
+ prometheus.GaugeOpts{
+ Name: "gitlab_pages_limit_listener_max_conns",
+ Help: "The maximum concurrent connections allowed by the limit listener.",
+ },
+ )
+
+ LimitListenerConcurrentConns = prometheus.NewGauge(
+ prometheus.GaugeOpts{
+ Name: "gitlab_pages_limit_listener_concurrent_conns",
+ Help: "The number of concurrent connections.",
+ },
+ )
+
+ LimitListenerWaiting = prometheus.NewGauge(
+ prometheus.GaugeOpts{
+ Name: "gitlab_pages_limit_listener_waiting_conns",
+ Help: "The number of backlogged connections waiting on concurrency limit.",
+ },
+ )
)
// MustRegister collectors with the Prometheus client
@@ -236,5 +257,9 @@ func MustRegister() {
ZipCacheRequests,
ZipArchiveEntriesCached,
ZipCachedEntries,
+ RejectedRequestsCount,
+ LimitListenerMaxConns,
+ LimitListenerConcurrentConns,
+ LimitListenerWaiting,
)
}