Added Opts to Event Exporter in config_defaults.go

This commit is contained in:
andronache
2021-05-07 15:47:12 +03:00
committed by Dan Christian Bogos
parent 6816e42d36
commit dd8d6dfaa8
2 changed files with 3 additions and 3 deletions

View File

@@ -483,7 +483,7 @@ const CGRATES_CFG_JSON = `
// "dbName": "cgrates", // the name of the database from where the events are exported
// "sslmode": "disable", // the postgresSSLMode for postgres
// Kafka
// "topic": "cgrates", // the topic from where the events are exported
@@ -499,7 +499,7 @@ const CGRATES_CFG_JSON = `
// "awsKey": "", // AWSKey
// "awsSecret": "", // AWSSecret
// "awsToken": "", // AWSToken
// "folderPath": "", // AWSFolderPath
// "awsFolderPath": "", // AWSFolderPath
}, // extra options for exporter
"tenant": "", // tenant used in filterS.Pass

View File

@@ -2536,7 +2536,7 @@ const (
AWSKey = "awsKey"
AWSSecret = "awsSecret"
AWSToken = "awsToken"
AWSFolderPath = "folderPath"
AWSFolderPath = "awsFolderPath"
KafkaTopic = "topic"
KafkaGroupID = "groupID"
KafkaMaxWait = "maxWait"