blob: c1d592cb19fbc5fe404e1e04d965e696c331d2ec [file] [log] [blame]
// Package influx provides common constants for setting up and access the
// performance monitoring InfluxDB instance.
package influx
const (
// Org is the Influx organization name.
Org = "golang"
// Bucker is the Influx bucket name.
Bucket = "perf"
)
// The names of the password/token secrets in Google Secret Manager.
const (
AdminPassSecretName = "influx-admin-pass"
AdminTokenSecretName = "influx-admin-token"
ReaderPassSecretName = "influx-reader-pass"
ReaderTokenSecretName = "influx-reader-token"
)