mirror of
https://github.com/akvorado/akvorado.git
synced 2025-12-12 06:24:10 +01:00
11 lines
301 B
Go
11 lines
301 B
Go
package web
|
|
|
|
// Configuration describes the configuration for the web component.
|
|
type Configuration struct {
|
|
// GrafanaURL is the URL to acess Grafana.
|
|
GrafanaURL string
|
|
}
|
|
|
|
// DefaultConfiguration represents the default configuration for the web exporter.
|
|
var DefaultConfiguration = Configuration{}
|