health_monitor: change the ctx run time frequency

Change the time frequency at which health monitor runs to 1 second.

Change-Id: I73330c05fbe55e9254823a0a20d3f6ef7cca8b38
Signed-off-by: Jagpal Singh Gill <paligill@gmail.com>
diff --git a/health_monitor.cpp b/health_monitor.cpp
index 36d027e..d0e3d4f 100644
--- a/health_monitor.cpp
+++ b/health_monitor.cpp
@@ -46,7 +46,7 @@
                   std::to_underlying(type));
             collection->read();
         }
-        co_await sdbusplus::async::sleep_for(ctx, std::chrono::seconds(5));
+        co_await sdbusplus::async::sleep_for(ctx, std::chrono::seconds(1));
     }
 }