We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0c54179 commit a311d20Copy full SHA for a311d20
observability-lib/grafana/dashboard.go
@@ -123,7 +123,8 @@ func (o *Observability) DeployToGrafana(options *DeployOptions) error {
123
newDashboard, _, errPostDashboard = grafanaClient.PostDashboard(api.PostDashboardRequest{
124
Dashboard: o.Dashboard,
125
Overwrite: true,
126
- FolderID: int(folder.ID),
+ //nolint:gosec // disable G115
127
+ FolderID: int(folder.ID),
128
})
129
if errPostDashboard != nil {
130
return errPostDashboard
0 commit comments