-
Notifications
You must be signed in to change notification settings - Fork 117
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into dependabot/go_modules/golang.org/x/net-0.17.0
- Loading branch information
Showing
29 changed files
with
1,301 additions
and
435 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,4 +13,5 @@ nacos_cache | |
*.p12 | ||
dist | ||
vendor | ||
bin/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,7 +36,9 @@ | |
// retryTimes when error occurs in inserting datas | ||
"retryTimes": 0, | ||
// max open connections with each clickhouse node. default to 1. | ||
"maxOpenConns": 1 | ||
"maxOpenConns": 1, | ||
// native or http, if configured secure and http both, means support https. default to native. | ||
"protocol": "native" | ||
}, | ||
|
||
// Kafka config | ||
|
@@ -50,6 +52,8 @@ | |
"sasl.mechanism":"GSSAPI", | ||
"sasl.jaas.config":"com.sun.security.auth.module.Krb5LoginModule required useKeyTab=true storeKey=true debug=true keyTab=\"/etc/security/mmmtest.keytab\" principal=\"[email protected]\";" | ||
}, | ||
// whether reset domain realm. if this option is true, domain realm will replaced by "hadoop.{toLower(GSSAPI.Realm)}:{port}", this feature is worked when clickhouse_sinker connect to HUAWEI MRS kerberos kafka. | ||
"resetSaslRealm": false, | ||
|
||
// SSL | ||
"tls": { | ||
|
@@ -148,6 +152,10 @@ | |
"blackList": "@" | ||
}, | ||
|
||
// additional fields to be appended to each input message, should be a valid json string | ||
// e.g. fields: "{\"Enable\":true,\"MaxDims\":0,\"Earliest\":false,\"Parser\":\"fastjson\"}" | ||
"fields": "", | ||
|
||
// PrometheusSchema expects each message is a Prometheus metric(timestamp, value, metric name and a list of labels). | ||
"prometheusSchema": true, | ||
// the regexp of labels black list, fields match promLabelsBlackList are not considered as part of labels column in series table | ||
|
Oops, something went wrong.