Drop influxcloud (#4461)

This commit is contained in:
Michael Vines
2019-05-28 15:34:36 -07:00
committed by GitHub
parent 9341e64ec7
commit e510d4e272
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
;;