├── .config └── tsaoptions.json ├── .gitignore ├── CONTRIBUTING.md ├── CredScanSuppressions.json ├── LICENSE.txt ├── OneBranch.Official.yml ├── PolicheckExclusion.xml ├── README.md ├── SECURITY.md ├── global.gdnbaselines ├── global.gdnsuppress └── src ├── CMakeLists.txt ├── Version.txt ├── buildall.sh ├── debpkg ├── Makefile ├── changelog ├── control ├── copyright └── lintian-overrides ├── fluent-plugin-mdsd ├── Gemfile ├── README.md ├── Rakefile ├── fluent-plugin-mdsd.gemspec ├── gemspec-template ├── lib │ └── fluent │ │ └── plugin │ │ └── out_mdsd.rb ├── mdsdCfg_sample.xml ├── out_mdsd_sample.conf ├── out_mdsd_sample_for_filelog.conf ├── out_mdsd_sample_for_syslog.conf └── test │ └── plugin │ └── test_out_mdsd.rb ├── outmdsd ├── BufferedLogger.cc ├── BufferedLogger.h ├── CMakeLists.txt ├── ConcurrentMap.h ├── ConcurrentQueue.h ├── DataReader.cc ├── DataReader.h ├── DataResender.cc ├── DataResender.h ├── DataSender.cc ├── DataSender.h ├── DjsonLogItem.cc ├── DjsonLogItem.h ├── EtwLogItem.h ├── Exceptions.h ├── FileTracer.cc ├── FileTracer.h ├── ITracer.h ├── IdMgr.cc ├── IdMgr.h ├── LogItem.cc ├── LogItem.h ├── LogItemPtr.h ├── SockAddr.cc ├── SockAddr.h ├── SocketClient.cc ├── SocketClient.h ├── SocketLogger.cc ├── SocketLogger.h ├── SyslogTracer.cc ├── SyslogTracer.h ├── Trace.cc ├── Trace.h └── TraceMacros.h ├── outmdsdrb ├── CMakeLists.txt ├── outmdsd_log.cxx ├── outmdsd_log.h ├── outmdsdrb.i └── wrap_memcpy.c └── test ├── CMakeLists.txt ├── outmdsd ├── CMakeLists.txt ├── CounterCV.h ├── MockServer.cc ├── MockServer.h ├── mockserver_main.cc ├── testbuflog.cc ├── testlogger.cc ├── testlogitem.cc ├── testmap.cc ├── testqueue.cc ├── testreader.cc ├── testresender.cc ├── testsender.cc ├── testsocket.cc ├── testtrace.cc ├── testutil.cc ├── testutil.h └── utmain.cc ├── outmdsdrb ├── CMakeLists.txt └── mdsdlogger.rb ├── parseglibc.py └── runtests.sh /.config/tsaoptions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/.config/tsaoptions.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CredScanSuppressions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/CredScanSuppressions.json -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /OneBranch.Official.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/OneBranch.Official.yml -------------------------------------------------------------------------------- /PolicheckExclusion.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/PolicheckExclusion.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/SECURITY.md -------------------------------------------------------------------------------- /global.gdnbaselines: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/global.gdnbaselines -------------------------------------------------------------------------------- /global.gdnsuppress: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/global.gdnsuppress -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/Version.txt: -------------------------------------------------------------------------------- 1 | 0.2.6 2 | -------------------------------------------------------------------------------- /src/buildall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/src/buildall.sh -------------------------------------------------------------------------------- /src/debpkg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/src/debpkg/Makefile -------------------------------------------------------------------------------- /src/debpkg/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/src/debpkg/changelog -------------------------------------------------------------------------------- /src/debpkg/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/src/debpkg/control -------------------------------------------------------------------------------- /src/debpkg/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/src/debpkg/copyright -------------------------------------------------------------------------------- /src/debpkg/lintian-overrides: -------------------------------------------------------------------------------- 1 | # Internal package, no itp bugs involved 2 | -------------------------------------------------------------------------------- /src/fluent-plugin-mdsd/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/src/fluent-plugin-mdsd/Gemfile -------------------------------------------------------------------------------- /src/fluent-plugin-mdsd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/src/fluent-plugin-mdsd/README.md -------------------------------------------------------------------------------- /src/fluent-plugin-mdsd/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/src/fluent-plugin-mdsd/Rakefile -------------------------------------------------------------------------------- /src/fluent-plugin-mdsd/fluent-plugin-mdsd.gemspec: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/fluent-plugin-mdsd/gemspec-template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/src/fluent-plugin-mdsd/gemspec-template -------------------------------------------------------------------------------- /src/fluent-plugin-mdsd/lib/fluent/plugin/out_mdsd.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/src/fluent-plugin-mdsd/lib/fluent/plugin/out_mdsd.rb -------------------------------------------------------------------------------- /src/fluent-plugin-mdsd/mdsdCfg_sample.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/src/fluent-plugin-mdsd/mdsdCfg_sample.xml -------------------------------------------------------------------------------- /src/fluent-plugin-mdsd/out_mdsd_sample.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/src/fluent-plugin-mdsd/out_mdsd_sample.conf -------------------------------------------------------------------------------- /src/fluent-plugin-mdsd/out_mdsd_sample_for_filelog.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/src/fluent-plugin-mdsd/out_mdsd_sample_for_filelog.conf -------------------------------------------------------------------------------- /src/fluent-plugin-mdsd/out_mdsd_sample_for_syslog.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/src/fluent-plugin-mdsd/out_mdsd_sample_for_syslog.conf -------------------------------------------------------------------------------- /src/fluent-plugin-mdsd/test/plugin/test_out_mdsd.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/src/fluent-plugin-mdsd/test/plugin/test_out_mdsd.rb -------------------------------------------------------------------------------- /src/outmdsd/BufferedLogger.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/src/outmdsd/BufferedLogger.cc -------------------------------------------------------------------------------- /src/outmdsd/BufferedLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/src/outmdsd/BufferedLogger.h -------------------------------------------------------------------------------- /src/outmdsd/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/src/outmdsd/CMakeLists.txt -------------------------------------------------------------------------------- /src/outmdsd/ConcurrentMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/src/outmdsd/ConcurrentMap.h -------------------------------------------------------------------------------- /src/outmdsd/ConcurrentQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/src/outmdsd/ConcurrentQueue.h -------------------------------------------------------------------------------- /src/outmdsd/DataReader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/src/outmdsd/DataReader.cc -------------------------------------------------------------------------------- /src/outmdsd/DataReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/src/outmdsd/DataReader.h -------------------------------------------------------------------------------- /src/outmdsd/DataResender.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/src/outmdsd/DataResender.cc -------------------------------------------------------------------------------- /src/outmdsd/DataResender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/src/outmdsd/DataResender.h -------------------------------------------------------------------------------- /src/outmdsd/DataSender.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/src/outmdsd/DataSender.cc -------------------------------------------------------------------------------- /src/outmdsd/DataSender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/src/outmdsd/DataSender.h -------------------------------------------------------------------------------- /src/outmdsd/DjsonLogItem.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/src/outmdsd/DjsonLogItem.cc -------------------------------------------------------------------------------- /src/outmdsd/DjsonLogItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/src/outmdsd/DjsonLogItem.h -------------------------------------------------------------------------------- /src/outmdsd/EtwLogItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/src/outmdsd/EtwLogItem.h -------------------------------------------------------------------------------- /src/outmdsd/Exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/src/outmdsd/Exceptions.h -------------------------------------------------------------------------------- /src/outmdsd/FileTracer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/src/outmdsd/FileTracer.cc -------------------------------------------------------------------------------- /src/outmdsd/FileTracer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/src/outmdsd/FileTracer.h -------------------------------------------------------------------------------- /src/outmdsd/ITracer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/src/outmdsd/ITracer.h -------------------------------------------------------------------------------- /src/outmdsd/IdMgr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/src/outmdsd/IdMgr.cc -------------------------------------------------------------------------------- /src/outmdsd/IdMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/src/outmdsd/IdMgr.h -------------------------------------------------------------------------------- /src/outmdsd/LogItem.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/src/outmdsd/LogItem.cc -------------------------------------------------------------------------------- /src/outmdsd/LogItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/src/outmdsd/LogItem.h -------------------------------------------------------------------------------- /src/outmdsd/LogItemPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/src/outmdsd/LogItemPtr.h -------------------------------------------------------------------------------- /src/outmdsd/SockAddr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/src/outmdsd/SockAddr.cc -------------------------------------------------------------------------------- /src/outmdsd/SockAddr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/src/outmdsd/SockAddr.h -------------------------------------------------------------------------------- /src/outmdsd/SocketClient.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/src/outmdsd/SocketClient.cc -------------------------------------------------------------------------------- /src/outmdsd/SocketClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/src/outmdsd/SocketClient.h -------------------------------------------------------------------------------- /src/outmdsd/SocketLogger.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/src/outmdsd/SocketLogger.cc -------------------------------------------------------------------------------- /src/outmdsd/SocketLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/src/outmdsd/SocketLogger.h -------------------------------------------------------------------------------- /src/outmdsd/SyslogTracer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/src/outmdsd/SyslogTracer.cc -------------------------------------------------------------------------------- /src/outmdsd/SyslogTracer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/src/outmdsd/SyslogTracer.h -------------------------------------------------------------------------------- /src/outmdsd/Trace.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/src/outmdsd/Trace.cc -------------------------------------------------------------------------------- /src/outmdsd/Trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/src/outmdsd/Trace.h -------------------------------------------------------------------------------- /src/outmdsd/TraceMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/src/outmdsd/TraceMacros.h -------------------------------------------------------------------------------- /src/outmdsdrb/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/src/outmdsdrb/CMakeLists.txt -------------------------------------------------------------------------------- /src/outmdsdrb/outmdsd_log.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/src/outmdsdrb/outmdsd_log.cxx -------------------------------------------------------------------------------- /src/outmdsdrb/outmdsd_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/src/outmdsdrb/outmdsd_log.h -------------------------------------------------------------------------------- /src/outmdsdrb/outmdsdrb.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/src/outmdsdrb/outmdsdrb.i -------------------------------------------------------------------------------- /src/outmdsdrb/wrap_memcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/src/outmdsdrb/wrap_memcpy.c -------------------------------------------------------------------------------- /src/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/src/test/CMakeLists.txt -------------------------------------------------------------------------------- /src/test/outmdsd/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/src/test/outmdsd/CMakeLists.txt -------------------------------------------------------------------------------- /src/test/outmdsd/CounterCV.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/src/test/outmdsd/CounterCV.h -------------------------------------------------------------------------------- /src/test/outmdsd/MockServer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/src/test/outmdsd/MockServer.cc -------------------------------------------------------------------------------- /src/test/outmdsd/MockServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/src/test/outmdsd/MockServer.h -------------------------------------------------------------------------------- /src/test/outmdsd/mockserver_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/src/test/outmdsd/mockserver_main.cc -------------------------------------------------------------------------------- /src/test/outmdsd/testbuflog.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/src/test/outmdsd/testbuflog.cc -------------------------------------------------------------------------------- /src/test/outmdsd/testlogger.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/src/test/outmdsd/testlogger.cc -------------------------------------------------------------------------------- /src/test/outmdsd/testlogitem.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/src/test/outmdsd/testlogitem.cc -------------------------------------------------------------------------------- /src/test/outmdsd/testmap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/src/test/outmdsd/testmap.cc -------------------------------------------------------------------------------- /src/test/outmdsd/testqueue.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/src/test/outmdsd/testqueue.cc -------------------------------------------------------------------------------- /src/test/outmdsd/testreader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/src/test/outmdsd/testreader.cc -------------------------------------------------------------------------------- /src/test/outmdsd/testresender.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/src/test/outmdsd/testresender.cc -------------------------------------------------------------------------------- /src/test/outmdsd/testsender.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/src/test/outmdsd/testsender.cc -------------------------------------------------------------------------------- /src/test/outmdsd/testsocket.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/src/test/outmdsd/testsocket.cc -------------------------------------------------------------------------------- /src/test/outmdsd/testtrace.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/src/test/outmdsd/testtrace.cc -------------------------------------------------------------------------------- /src/test/outmdsd/testutil.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/src/test/outmdsd/testutil.cc -------------------------------------------------------------------------------- /src/test/outmdsd/testutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/src/test/outmdsd/testutil.h -------------------------------------------------------------------------------- /src/test/outmdsd/utmain.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/src/test/outmdsd/utmain.cc -------------------------------------------------------------------------------- /src/test/outmdsdrb/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/src/test/outmdsdrb/CMakeLists.txt -------------------------------------------------------------------------------- /src/test/outmdsdrb/mdsdlogger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/src/test/outmdsdrb/mdsdlogger.rb -------------------------------------------------------------------------------- /src/test/parseglibc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/src/test/parseglibc.py -------------------------------------------------------------------------------- /src/test/runtests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/fluentd-plugin-mdsd/HEAD/src/test/runtests.sh --------------------------------------------------------------------------------