diff --git a/cmd/influx_stress/examples/100B_FLAT.toml b/cmd/influx_stress/examples/100B_FLAT.toml new file mode 100644 index 0000000000..dfa60b0830 --- /dev/null +++ b/cmd/influx_stress/examples/100B_FLAT.toml @@ -0,0 +1,30 @@ +channel_buffer_size = 100000 + +[write] + concurrency = 10 + batch_size = 10000 + batch_interval = "0s" + database = "stress" + precision = "n" + address = "localhost:8086" + reset_database = true + start_date = "2006-Jan-02" + +[[series]] + tick = "10s" + jitter = false + point_count = 1000000 # number of points that will be written for each of the series + measurement = "cpu" + series_count = 100000 + + [[series.tag]] + key = "host" + value = "server" + + [[series.tag]] + key = "location" + value = "loc" + + [[series.field]] + key = "value" + type = "float64-flat" diff --git a/cmd/influx_stress/examples/100B_STD.toml b/cmd/influx_stress/examples/100B_STD.toml new file mode 100644 index 0000000000..87b00932b6 --- /dev/null +++ b/cmd/influx_stress/examples/100B_STD.toml @@ -0,0 +1,30 @@ +channel_buffer_size = 100000 + +[write] + concurrency = 10 + batch_size = 10000 + batch_interval = "0s" + database = "stress" + precision = "n" + address = "localhost:8086" + reset_database = true + start_date = "2006-Jan-02" + +[[series]] + tick = "1ns" + jitter = true + point_count = 100000 # number of points that will be written for each of the series + measurement = "cpu" + series_count = 100000 + + [[series.tag]] + key = "host" + value = "server" + + [[series.tag]] + key = "location" + value = "loc" + + [[series.field]] + key = "value" + type = "float64" diff --git a/cmd/influx_stress/examples/example_3.toml b/cmd/influx_stress/examples/100M_FLAT.toml similarity index 100% rename from cmd/influx_stress/examples/example_3.toml rename to cmd/influx_stress/examples/100M_FLAT.toml diff --git a/cmd/influx_stress/examples/100M_STD.toml b/cmd/influx_stress/examples/100M_STD.toml new file mode 100644 index 0000000000..7f2c3d03da --- /dev/null +++ b/cmd/influx_stress/examples/100M_STD.toml @@ -0,0 +1,47 @@ +channel_buffer_size = 100000 + +[write] + concurrency = 10 + batch_size = 10000 + batch_interval = "0s" + database = "stress" + precision = "s" + address = "localhost:8086" + reset_database = true + start_date = "2006-Jan-02" + +[[series]] + tick = "5s" + jitter = false + point_count = 10000 # number of points that will be written for each of the series + measurement = "cpu" + series_count = 10000 + + # tag_count = 20 # number of "generic" tags on a series (e.g. tag-key-1=tag-value, ... ,tag-key-20=tag-value) + + [[series.tag]] + key = "host" + value = "server" + + [[series.tag]] + key = "location" + value = "loc" + + [[series.field]] + key = "value" + type = "float64" + + # Doesnt work as expected +## [[series.field]] +## key = "value-2" +## type = "float64-inc" +## +## [[series.field]] +## key = "value-3" +## type = "float64-inc+" + + # Has 80% probability of being a constant value + [[series.field]] + key = "flat_value" + type = "float64-flat" + diff --git a/cmd/influx_stress/examples/example_2.toml b/cmd/influx_stress/examples/5M_STD.toml similarity index 100% rename from cmd/influx_stress/examples/example_2.toml rename to cmd/influx_stress/examples/5M_STD.toml diff --git a/cmd/influx_stress/examples/example_4.toml b/cmd/influx_stress/examples/long_form_date.toml similarity index 100% rename from cmd/influx_stress/examples/example_4.toml rename to cmd/influx_stress/examples/long_form_date.toml diff --git a/cmd/influx_stress/examples/example_1.toml b/cmd/influx_stress/examples/template.toml similarity index 100% rename from cmd/influx_stress/examples/example_1.toml rename to cmd/influx_stress/examples/template.toml