mirror of
https://github.com/grafana/grafana.git
synced 2024-11-25 02:10:45 -06:00
606a74d0af
* Zanana: Initial work to run zanana as ebeddedn or standalone * Add addr settings for when remote client is used. * sync dependencies * Lock mysql driver version --------- Co-authored-by: Dan Cech <dcech@grafana.com>
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},
|
|
}
|