mirror of
https://github.com/grafana/grafana.git
synced 2025-08-02 01:15:46 +08:00

* create the most basic frontend-server module * expose prom metrics?? * add todo list * move frontend-service to its own folder in services * check error from writer.Write * reword comment, add launch config
23 lines
674 B
Go
23 lines
674 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"
|
|
FrontendServer string = "frontend-server"
|
|
)
|
|
|
|
var dependencyMap = map[string][]string{
|
|
GrafanaAPIServer: {InstrumentationServer},
|
|
StorageServer: {InstrumentationServer},
|
|
ZanzanaServer: {InstrumentationServer},
|
|
Core: {},
|
|
All: {Core},
|
|
FrontendServer: {},
|
|
}
|