From 16ff14bda7022b52bc3d7414ce22f36a23f0eac9 Mon Sep 17 00:00:00 2001 From: Grant Limberg Date: Thu, 2 Sep 2021 13:48:08 -0700 Subject: [PATCH] identify controller in pool stats --- controller/PostgreSQL.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/controller/PostgreSQL.cpp b/controller/PostgreSQL.cpp index b26e9908..ac44894a 100644 --- a/controller/PostgreSQL.cpp +++ b/controller/PostgreSQL.cpp @@ -1393,8 +1393,8 @@ void PostgreSQL::onlineNotification_Postgres() _pool->unborrow(c); ConnectionPoolStats stats = _pool->get_stats(); - fprintf(stderr, "pool stats: in use size: %llu, available size: %llu, total: %llu\n", - stats.borrowed_size, stats.pool_size, (stats.borrowed_size + stats.pool_size)); + fprintf(stderr, "%s pool stats: in use size: %llu, available size: %llu, total: %llu\n", + _myAddressStr.c_str(), stats.borrowed_size, stats.pool_size, (stats.borrowed_size + stats.pool_size)); std::this_thread::sleep_for(std::chrono::seconds(10)); }