about summary refs log tree commit diff
path: root/streaming
diff options
context:
space:
mode:
authoremilweth <7402764+emilweth@users.noreply.github.com>2023-02-11 03:00:44 +0100
committerGitHub <noreply@github.com>2023-02-11 03:00:44 +0100
commit7c45145430d7f61c01de6a8c6a55b4c8588a67c4 (patch)
tree651d6468c0bc62ccf298c8d2f409fda88b454bfd /streaming
parentc1b823368c894c80b586d37c85012ee766a32c0e (diff)
fix metrics format (#23520)
Diffstat (limited to 'streaming')
-rw-r--r--streaming/index.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/streaming/index.js b/streaming/index.js
index 1121c77bf..32e3babaa 100644
--- a/streaming/index.js
+++ b/streaming/index.js
@@ -856,13 +856,13 @@ const startWorker = async (workerId) => {
     res.write('# TYPE connected_channels gauge\n');
     res.write('# HELP connected_channels The number of Redis channels the streaming server is subscribed to\n');
     res.write(`connected_channels ${Object.keys(subs).length}.0\n`);
-    res.write('# TYPE pg_pool_total_connections gauge \n');
+    res.write('# TYPE pg_pool_total_connections gauge\n');
     res.write('# HELP pg_pool_total_connections The total number of clients existing within the pool\n');
     res.write(`pg_pool_total_connections ${pgPool.totalCount}.0\n`);
-    res.write('# TYPE pg_pool_idle_connections gauge \n');
+    res.write('# TYPE pg_pool_idle_connections gauge\n');
     res.write('# HELP pg_pool_idle_connections The number of clients which are not checked out but are currently idle in the pool\n');
     res.write(`pg_pool_idle_connections ${pgPool.idleCount}.0\n`);
-    res.write('# TYPE pg_pool_waiting_queries gauge \n');
+    res.write('# TYPE pg_pool_waiting_queries gauge\n');
     res.write('# HELP pg_pool_waiting_queries The number of queued requests waiting on a client when all clients are checked out\n');
     res.write(`pg_pool_waiting_queries ${pgPool.waitingCount}.0\n`);
     res.write('# EOF\n');