21 lines
601 B
Go
21 lines
601 B
Go
package modules
|
|
|
|
const (
|
|
// All includes all modules necessary for Grafana to run as a standalone server
|
|
All string = "all"
|
|
|
|
Core string = "core"
|
|
GrafanaAPIServer string = "grafana-apiserver"
|
|
StorageServer string = "storage-server"
|
|
ZanzanaServer string = "zanzana-server"
|
|
InstrumentationServer string = "instrumentation-server"
|
|
)
|
|
|
|
var dependencyMap = map[string][]string{
|
|
GrafanaAPIServer: {InstrumentationServer},
|
|
StorageServer: {InstrumentationServer},
|
|
ZanzanaServer: {InstrumentationServer},
|
|
Core: {},
|
|
All: {Core},
|
|
}
|