Tool to help you manage your Grafana dashboards using Git.

dashboards.go 1.3KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. package grafana
  2. import (
  3. "encoding/json"
  4. // "fmt"
  5. )
  6. type dbSearchResponse struct {
  7. ID int `json:"id"`
  8. Title string `json:"title"`
  9. URI string `json:"uri"`
  10. Type string `json:"type"`
  11. Tags []string `json:"tags"`
  12. Starred bool `json:"isStarred"`
  13. }
  14. type Dashboard struct {
  15. RawJSON []byte
  16. Slug string
  17. Version int
  18. }
  19. func (d *Dashboard) UnmarshalJSON(b []byte) (err error) {
  20. var body struct {
  21. Dashboard interface{} `json:"dashboard"`
  22. Meta struct {
  23. Slug string `json:"slug"`
  24. Version int `json:"version"`
  25. } `json:"meta"`
  26. }
  27. if err = json.Unmarshal(b, &body); err != nil {
  28. return
  29. }
  30. d.Slug = body.Meta.Slug
  31. d.Version = body.Meta.Version
  32. d.RawJSON, err = json.Marshal(body.Dashboard)
  33. return
  34. }
  35. func (c *Client) GetDashboardsURIs() (URIs []string, err error) {
  36. resp, err := c.request("GET", "search", nil)
  37. var respBody []dbSearchResponse
  38. if err = json.Unmarshal(resp, &respBody); err != nil {
  39. return
  40. }
  41. URIs = make([]string, 0)
  42. for _, db := range respBody {
  43. URIs = append(URIs, db.URI)
  44. }
  45. return
  46. }
  47. func (c *Client) GetDashboard(URI string) (db *Dashboard, err error) {
  48. body, err := c.request("GET", "dashboards/"+URI, nil)
  49. if err != nil {
  50. return
  51. }
  52. db = new(Dashboard)
  53. err = json.Unmarshal(body, db)
  54. return
  55. }