influxdb/stress/test.toml

44 lines
717 B
TOML
Raw Normal View History

2015-10-02 23:05:06 +00:00
channel_buffer_size = 100
2015-09-25 04:56:20 +00:00
2015-09-18 23:03:01 +00:00
[write]
concurrency = 10
2015-10-02 23:05:06 +00:00
batch_size = 10000
2015-09-18 23:03:01 +00:00
batch_interval = "0s"
database = "stress"
2015-10-02 23:05:06 +00:00
precision = "s"
2015-09-18 23:03:01 +00:00
address = "localhost:8086"
reset_database = true
2015-10-02 23:05:06 +00:00
start_date = "2006-Jan-02"
2015-09-18 23:03:01 +00:00
[[series]]
2015-10-02 23:05:06 +00:00
tick = "10s"
2015-09-23 03:40:41 +00:00
point_count = 10 # number of points that will be written for each of the series
2015-09-18 23:03:01 +00:00
measurement = "cpu"
series_count = 10000
2015-09-23 03:40:41 +00:00
tag_count = 0 #
2015-09-18 23:03:01 +00:00
[[series.tag]]
key = "host"
value = "idk"
[[series.tag]]
key = "location"
value = "lame"
[[series.field]]
key = "value"
type = "float64"
[[series.field]]
key = "percent"
type = "int"
[[series.field]]
key = "idk"
type = "bool"
[[series.field]]
key = "default"