Rename drone to faucet (#7508)

This commit is contained in:
Tyera Eulberg
2019-12-16 14:05:17 -07:00
committed by GitHub
parent f33703aefc
commit 3513f4ee84
50 changed files with 389 additions and 361 deletions

View File

@ -37,7 +37,7 @@ adhoc metrics collection/viewing
Simple example of pulling all airdrop measurements out of the `testnet` database:
```sh
$ influx -database testnet -username read -password read -execute 'SELECT * FROM "drone-airdrop"'
$ influx -database testnet -username read -password read -execute 'SELECT * FROM "faucet-airdrop"'
```
Reference: https://docs.influxdata.com/influxdb/v1.5/query_language/

View File

@ -1997,7 +1997,7 @@
"measurement": "cluster_info-vote-count",
"orderByTime": "ASC",
"policy": "autogen",
"query": "SELECT \"request_amount\" FROM \"$testnet\".\"autogen\".\"drone-airdrop\" WHERE $timeFilter fill(null)\n\n\n\n",
"query": "SELECT \"request_amount\" FROM \"$testnet\".\"autogen\".\"faucet-airdrop\" WHERE $timeFilter fill(null)\n\n\n\n",
"rawQuery": true,
"refId": "A",
"resultFormat": "time_series",

View File

@ -22,6 +22,6 @@ fi
set -x
point="drone-airdrop,localmetrics=test request_amount=1i,request_current=1i"
point="faucet-airdrop,localmetrics=test request_amount=1i,request_current=1i"
echo "${host}/write?db=${INFLUX_DATABASE}&u=${INFLUX_USERNAME}&p={$INFLUX_PASSWORD}" \
| xargs curl -XPOST --data-binary "$point"