From 55cb12c9f81896324ecdfa832cb360b7681032db Mon Sep 17 00:00:00 2001 From: Thomas Gruber Date: Mon, 15 Jul 2024 12:41:07 +0200 Subject: [PATCH] Update README.md Use right JSON type in configuration --- sinks/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sinks/README.md b/sinks/README.md index d6c88b8..d28fba8 100644 --- a/sinks/README.md +++ b/sinks/README.md @@ -17,7 +17,7 @@ This folder contains the SinkManager and sink implementations for the cc-metric- The configuration file for the sinks is a list of configurations. The `type` field in each specifies which sink to initialize. ```json -[ +{ "mystdout" : { "type" : "stdout", "meta_as_tags" : [ @@ -31,7 +31,7 @@ The configuration file for the sinks is a list of configurations. The `type` fie "database" : "ccmetric", "password" : "" } -] +} ```