mirror of
https://gitee.com/beecue/fastbee.git
synced 2025-12-21 18:35:54 +08:00
feat(时序数据库集成): tdengine\influxdb\iotdb数据库集成
This commit is contained in:
110
docker/data/tdengine/conf/taosadapter.toml
Normal file
110
docker/data/tdengine/conf/taosadapter.toml
Normal file
@@ -0,0 +1,110 @@
|
||||
debug = true
|
||||
taosConfigDir = ""
|
||||
port = 6041
|
||||
logLevel = "info"
|
||||
httpCodeServerError = false
|
||||
SMLAutoCreateDB = false
|
||||
|
||||
[cors]
|
||||
allowAllOrigins = true
|
||||
|
||||
#[pool]
|
||||
#maxConnect = 0
|
||||
#maxIdle = 0
|
||||
#idleTimeout = 0
|
||||
|
||||
[ssl]
|
||||
enable = false
|
||||
certFile = ""
|
||||
keyFile = ""
|
||||
|
||||
[log]
|
||||
#path = "/var/log/taos"
|
||||
rotationCount = 30
|
||||
rotationTime = "24h"
|
||||
rotationSize = "1GB"
|
||||
enableRecordHttpSql = false
|
||||
sqlRotationCount = 2
|
||||
sqlRotationTime = "24h"
|
||||
sqlRotationSize = "1GB"
|
||||
|
||||
[monitor]
|
||||
disable = true
|
||||
collectDuration = "3s"
|
||||
incgroup = false
|
||||
pauseQueryMemoryThreshold = 70
|
||||
pauseAllMemoryThreshold = 80
|
||||
identity = ""
|
||||
|
||||
[uploadKeeper]
|
||||
enable = true
|
||||
url = "http://127.0.0.1:6043/adapter_report"
|
||||
interval = "15s"
|
||||
timeout = "5s"
|
||||
retryTimes = 3
|
||||
retryInterval = "5s"
|
||||
|
||||
[opentsdb]
|
||||
enable = true
|
||||
|
||||
[influxdb]
|
||||
enable = true
|
||||
|
||||
[statsd]
|
||||
enable = false
|
||||
port = 6044
|
||||
db = "statsd"
|
||||
user = "root"
|
||||
password = "taosdata"
|
||||
worker = 10
|
||||
gatherInterval = "5s"
|
||||
protocol = "udp4"
|
||||
maxTCPConnections = 250
|
||||
tcpKeepAlive = false
|
||||
allowPendingMessages = 50000
|
||||
deleteCounters = true
|
||||
deleteGauges = true
|
||||
deleteSets = true
|
||||
deleteTimings = true
|
||||
|
||||
[collectd]
|
||||
enable = false
|
||||
port = 6045
|
||||
db = "collectd"
|
||||
user = "root"
|
||||
password = "taosdata"
|
||||
worker = 10
|
||||
|
||||
|
||||
[opentsdb_telnet]
|
||||
enable = false
|
||||
maxTCPConnections = 250
|
||||
tcpKeepAlive = false
|
||||
dbs = ["opentsdb_telnet", "collectd", "icinga2", "tcollector"]
|
||||
ports = [6046, 6047, 6048, 6049]
|
||||
user = "root"
|
||||
password = "taosdata"
|
||||
batchSize = 1
|
||||
flushInterval = "0s"
|
||||
|
||||
[node_exporter]
|
||||
enable = false
|
||||
db = "node_exporter"
|
||||
user = "root"
|
||||
password = "taosdata"
|
||||
urls = ["http://fastbee:9100"]
|
||||
responseTimeout = "5s"
|
||||
httpUsername = ""
|
||||
httpPassword = ""
|
||||
httpBearerTokenString = ""
|
||||
caCertFile = ""
|
||||
certFile = ""
|
||||
keyFile = ""
|
||||
insecureSkipVerify = true
|
||||
gatherDuration = "5s"
|
||||
|
||||
[prometheus]
|
||||
enable = true
|
||||
|
||||
[tmq]
|
||||
releaseIntervalMultiplierForAutocommit = 2
|
||||
Reference in New Issue
Block a user