Drop influxcloud (#4460)

automerge
This commit is contained in:
Michael Vines
2019-05-28 16:26:59 -07:00
committed by Grimes
parent 14594217db
commit a7ef409c2b
2 changed files with 1 additions and 9 deletions

View File

@ -17,7 +17,6 @@ usage: $0 [-e] [-d] [-c] [username]
Creates a testnet dev metrics database
username InfluxDB user with access to create a new database
-c Use Influx Cloud instance
-d Delete the database instead of creating it
-e Assume database already exists and SOLANA_METRICS_CONFIG is
defined in the environment already
@ -31,15 +30,12 @@ loadConfigFile
useEnv=false
delete=false
host="https://metrics.solana.com:8086"
while getopts "hcde" opt; do
while getopts "hde" opt; do
case $opt in
h|\?)
usage
exit 0
;;
c)
host="https://clocktower-f1d56615.influxcloud.net:8086"
;;
d)
delete=true
;;