mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-07-29 18:42:00 +08:00

* chore: 🔧 fetch dashboards path from DASHBOARDS_PATH env * chore: 🚀 update docker files to include DASHBOARDS_PATH env
60 lines
1.5 KiB
Go
60 lines
1.5 KiB
Go
package dashboards
|
|
|
|
import (
|
|
"encoding/json"
|
|
"io/ioutil"
|
|
"os"
|
|
|
|
"go.signoz.io/query-service/constants"
|
|
"go.uber.org/zap"
|
|
)
|
|
|
|
func readCurrentDir(dir string) error {
|
|
file, err := os.Open(dir)
|
|
if err != nil {
|
|
zap.S().Errorf("failed opening directory: %s", err)
|
|
return err
|
|
}
|
|
defer file.Close()
|
|
|
|
list, _ := file.Readdirnames(0) // 0 to read all files and folders
|
|
for _, filename := range list {
|
|
zap.S().Info("Provisioning dashboard: ", filename)
|
|
plan, err := ioutil.ReadFile(dir + "/" + filename)
|
|
if err != nil {
|
|
zap.S().Errorf("Creating Dashboards: Error in reading json fron file: %s\t%s", filename, err)
|
|
continue
|
|
}
|
|
var data map[string]interface{}
|
|
err = json.Unmarshal(plan, &data)
|
|
if err != nil {
|
|
zap.S().Errorf("Creating Dashboards: Error in unmarshalling json from file: %s\t%s", filename, err)
|
|
continue
|
|
}
|
|
err = IsPostDataSane(&data)
|
|
if err != nil {
|
|
zap.S().Infof("Creating Dashboards: Error in file: %s\t%s", filename, err)
|
|
continue
|
|
}
|
|
|
|
_, apiErr := GetDashboard(data["uuid"].(string))
|
|
if apiErr == nil {
|
|
zap.S().Infof("Creating Dashboards: Error in file: %s\t%s", filename, "Dashboard already present in database")
|
|
continue
|
|
}
|
|
|
|
_, apiErr = CreateDashboard(data)
|
|
if apiErr != nil {
|
|
zap.S().Errorf("Creating Dashboards: Error in file: %s\t%s", filename, apiErr.Err)
|
|
continue
|
|
}
|
|
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func LoadDashboardFiles() error {
|
|
dashboardsPath := constants.GetOrDefaultEnv("DASHBOARDS_PATH", "./config/dashboards")
|
|
return readCurrentDir(dashboardsPath)
|
|
}
|