golang.org/x/build@v0.0.0-20240506185731-218518f32b70/internal/influx/influx.go (about) 1 // Copyright 2022 The Go Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style 3 // license that can be found in the LICENSE file. 4 5 // Package influx provides common constants for setting up and access the 6 // performance monitoring InfluxDB instance. 7 package influx 8 9 const ( 10 // Org is the Influx organization name. 11 Org = "golang" 12 13 // Bucker is the Influx bucket name. 14 Bucket = "perf" 15 ) 16 17 // The names of the password/token secrets in Google Secret Manager. 18 const ( 19 AdminPassSecretName = "influx-admin-pass" 20 AdminTokenSecretName = "influx-admin-token" 21 ReaderPassSecretName = "influx-reader-pass" 22 ReaderTokenSecretName = "influx-reader-token" 23 )