Tool to help you manage your Grafana dashboards using Git.

main.go 1.9KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. package main
  2. import (
  3. "flag"
  4. "os"
  5. "grafana"
  6. )
  7. // The Grafana API client needs to be global to the package since we need it in
  8. // the webhook handlers
  9. // TODO: Find a better way to pass it to the handlers
  10. var grafanaClient *grafana.Client
  11. var (
  12. grafanaURL = flag.String("grafana-url", "", "Base URL of the Grafana instance")
  13. grafanaAPIKey = flag.String("api-key", "", "API key to use in authenticated requests")
  14. clonePath = flag.String("clone-path", "/tmp/grafana-dashboards", "Path to directory where the repo will be cloned")
  15. repoURL = flag.String("git-repo", "", "SSH URL for the Git repository, without the user part")
  16. privateKeyPath = flag.String("private-key", "", "Path to the private key used to talk with the Git remote")
  17. webhookInterface = flag.String("webhook-interface", "127.0.0.1", "Interface on which the GitLab webhook will be exposed")
  18. webhookPort = flag.Int("webhook-port", 8080, "Port on which the GitLab webhook will be exposed")
  19. webhookPath = flag.String("webhook-path", "/gitlab-webhook", "Path at which GitLab should send payloads to the webhook")
  20. webhookSecret = flag.String("webhook-secret", "", "Secret GitLab will use to send payloads to the webhook")
  21. )
  22. func main() {
  23. flag.Parse()
  24. if *grafanaURL == "" {
  25. println("Error: No Grafana URL provided")
  26. flag.Usage()
  27. os.Exit(1)
  28. }
  29. if *grafanaAPIKey == "" {
  30. println("Error: No Grafana API key provided")
  31. flag.Usage()
  32. os.Exit(1)
  33. }
  34. if *repoURL == "" {
  35. println("Error: No Git repository provided")
  36. flag.Usage()
  37. os.Exit(1)
  38. }
  39. if *privateKeyPath == "" {
  40. println("Error: No private key provided")
  41. flag.Usage()
  42. os.Exit(1)
  43. }
  44. if *webhookSecret == "" {
  45. println("Error: No webhook secret provided")
  46. flag.Usage()
  47. os.Exit(1)
  48. }
  49. grafanaClient = grafana.NewClient(*grafanaURL, *grafanaAPIKey)
  50. if err := SetupWebhook(); err != nil {
  51. panic(err)
  52. }
  53. }