influxdb/stress/test.toml

44 lines
746 B
TOML
Raw Normal View History

2015-09-25 04:56:20 +00:00
channel_buffer_size = 1000
2015-09-18 23:03:01 +00:00
[write]
concurrency = 10
batch_size = 5000
batch_interval = "0s"
database = "stress"
precision = "n"
address = "localhost:8086"
reset_database = true
# doesnt do anything
2015-09-23 03:40:41 +00:00
starting_point = 0 # how far back in time to go
2015-09-18 23:03:01 +00:00
[[series]]
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"