Enabling monitoring for Exampleservice as a reference for other services
Change-Id: I67801d07170dea267a22179e4f8a7fb1312b6521
diff --git a/xos/synchronizer/monitoring_agent/monitoring_agent.conf b/xos/synchronizer/monitoring_agent/monitoring_agent.conf
new file mode 100755
index 0000000..2a53b03
--- /dev/null
+++ b/xos/synchronizer/monitoring_agent/monitoring_agent.conf
@@ -0,0 +1,21 @@
+[loggers]
+keys=root
+
+[handlers]
+keys=logfile
+
+[formatters]
+keys=logfileformatter
+
+[logger_root]
+level=DEBUG
+handlers=logfile
+
+[formatter_logfileformatter]
+format='%(asctime)s %(filename)s %(levelname)s %(message)s'
+
+[handler_logfile]
+class=handlers.RotatingFileHandler
+level=NOTSET
+args=('monitoring_agent.log','a',10000000,5)
+formatter=logfileformatter