Tool to help you manage your Grafana dashboards using Git.

main.go 648B

12345678910111213141516171819202122232425262728293031323334353637
  1. package main
  2. import (
  3. "flag"
  4. "config"
  5. "grafana"
  6. )
  7. // The Grafana API client and the config need to be global to the package since
  8. // we need them in the webhook handlers.
  9. // TODO: Find a better way to pass it to the handlers
  10. var (
  11. grafanaClient *grafana.Client
  12. cfg *config.Config
  13. )
  14. var (
  15. configFile = flag.String("config", "config.yaml", "Path to the configuration file")
  16. )
  17. func main() {
  18. var err error
  19. flag.Parse()
  20. cfg, err = config.Load(*configFile)
  21. if err != nil {
  22. panic(err)
  23. }
  24. grafanaClient = grafana.NewClient(cfg.Grafana.BaseURL, cfg.Grafana.APIKey)
  25. if err = SetupWebhook(cfg); err != nil {
  26. panic(err)
  27. }
  28. }