| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167 |
- package dashboards
- import (
- "context"
- "fmt"
- "os"
- "path/filepath"
- "strings"
- "time"
- "github.com/grafana/grafana/pkg/services/dashboards"
- "github.com/grafana/grafana/pkg/bus"
- "github.com/grafana/grafana/pkg/components/simplejson"
- "github.com/grafana/grafana/pkg/log"
- "github.com/grafana/grafana/pkg/models"
- gocache "github.com/patrickmn/go-cache"
- )
- type fileReader struct {
- Cfg *DashboardsAsConfig
- Path string
- log log.Logger
- dashboardRepo dashboards.Repository
- cache *gocache.Cache
- }
- func NewDashboardFileReader(cfg *DashboardsAsConfig, log log.Logger) (*fileReader, error) {
- path, ok := cfg.Options["folder"].(string)
- if !ok {
- return nil, fmt.Errorf("Failed to load dashboards. folder param is not a string")
- }
- if _, err := os.Stat(path); os.IsNotExist(err) {
- log.Error("Cannot read directory", "error", err)
- }
- return &fileReader{
- Cfg: cfg,
- Path: path,
- log: log,
- dashboardRepo: dashboards.GetRepository(),
- cache: gocache.New(5*time.Minute, 30*time.Minute),
- }, nil
- }
- func (fr *fileReader) addCache(key string, json *dashboards.SaveDashboardItem) {
- fr.cache.Add(key, json, time.Minute*10)
- }
- func (fr *fileReader) getCache(key string) (*dashboards.SaveDashboardItem, bool) {
- obj, exist := fr.cache.Get(key)
- if !exist {
- return nil, exist
- }
- dash, ok := obj.(*dashboards.SaveDashboardItem)
- if !ok {
- return nil, ok
- }
- return dash, ok
- }
- func (fr *fileReader) ReadAndListen(ctx context.Context) error {
- ticker := time.NewTicker(time.Second * 5)
- if err := fr.walkFolder(); err != nil {
- fr.log.Error("failed to search for dashboards", "error", err)
- }
- for {
- select {
- case <-ticker.C:
- fr.walkFolder()
- case <-ctx.Done():
- return nil
- }
- }
- }
- func (fr *fileReader) walkFolder() error {
- if _, err := os.Stat(fr.Path); err != nil {
- if os.IsNotExist(err) {
- return err
- }
- }
- return filepath.Walk(fr.Path, func(path string, fileInfo os.FileInfo, err error) error {
- if err != nil {
- return err
- }
- if fileInfo.IsDir() {
- if strings.HasPrefix(fileInfo.Name(), ".") {
- return filepath.SkipDir
- }
- return nil
- }
- if !strings.HasSuffix(fileInfo.Name(), ".json") {
- return nil
- }
- cachedDashboard, exist := fr.getCache(path)
- if exist && cachedDashboard.UpdatedAt == fileInfo.ModTime() {
- return nil
- }
- dash, err := fr.readDashboardFromFile(path)
- if err != nil {
- fr.log.Error("failed to load dashboard from ", "file", path, "error", err)
- return nil
- }
- cmd := &models.GetDashboardQuery{Slug: dash.Dashboard.Slug}
- err = bus.Dispatch(cmd)
- // if we dont have the dashboard in the db, save it!
- if err == models.ErrDashboardNotFound {
- fr.log.Debug("saving new dashboard", "file", path)
- _, err = fr.dashboardRepo.SaveDashboard(dash)
- return err
- }
- if err != nil {
- fr.log.Error("failed to query for dashboard", "slug", dash.Dashboard.Slug, "error", err)
- return nil
- }
- // break if db version is newer then fil version
- if cmd.Result.Updated.Unix() >= fileInfo.ModTime().Unix() {
- return nil
- }
- fr.log.Debug("loading dashboard from disk into database.", "file", path)
- _, err = fr.dashboardRepo.SaveDashboard(dash)
- return err
- })
- }
- func (fr *fileReader) readDashboardFromFile(path string) (*dashboards.SaveDashboardItem, error) {
- reader, err := os.Open(path)
- if err != nil {
- return nil, err
- }
- defer reader.Close()
- data, err := simplejson.NewFromReader(reader)
- if err != nil {
- return nil, err
- }
- stat, err := os.Stat(path)
- if err != nil {
- return nil, err
- }
- dash, err := createDashboardJson(data, stat.ModTime(), fr.Cfg)
- if err != nil {
- return nil, err
- }
- fr.addCache(path, dash)
- return dash, nil
- }
|