mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-08-01 06:42:03 +08:00

* feat: added license manager and feature flags * feat: completed org domain api * chore: checking in saml auth handler code * feat: added signup with sso * feat: added login support for admins * feat: added pem support for certificate * ci(build-workflow): 👷 include EE query-service * fix: 🐛 update package name * chore(ee): 🔧 LD_FLAGS related changes Signed-off-by: Prashant Shahi <prashant@signoz.io> Co-authored-by: Prashant Shahi <prashant@signoz.io> Co-authored-by: nityanandagohain <nityanandagohain@gmail.com>
60 lines
1.5 KiB
Go
60 lines
1.5 KiB
Go
package dashboards
|
|
|
|
import (
|
|
"encoding/json"
|
|
"io/ioutil"
|
|
"os"
|
|
|
|
"go.signoz.io/signoz/pkg/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)
|
|
}
|