mirror of
https://github.com/Oxalide/vsphere-influxdb-go.git
synced 2023-10-10 13:36:51 +02:00
14 lines
195 B
Plaintext
14 lines
195 B
Plaintext
|
CREATE DATABASE stress
|
||
|
|
||
|
GO INSERT cpu
|
||
|
cpu,
|
||
|
host=server-[int inc(0) 100000],location=us-west
|
||
|
value=[int rand(100) 0]
|
||
|
10000000 10s
|
||
|
|
||
|
GO QUERY cpu
|
||
|
SELECT count(value) FROM cpu WHERE %t
|
||
|
DO 250
|
||
|
|
||
|
WAIT
|