ソースを参照

Send overwrite: true in creation/update requests because else the Grafana API does weird stuff

Brendan Abolivier 6 年 前
コミット
05ac42989e
署名者: Brendan Abolivier <contact@brendanabolivier.com> GPGキーID: 8EF1500759F70623
共有1 個のファイルを変更した1 個の追加1 個の削除を含む
  1. 1
    1
      src/grafana/dashboards.go

+ 1
- 1
src/grafana/dashboards.go ファイルの表示

@@ -80,7 +80,7 @@ func (c *Client) GetDashboard(URI string) (db *Dashboard, err error) {
80 80
 func (c *Client) CreateOrUpdateDashboard(slug string, contentJSON []byte) (err error) {
81 81
 	reqBody := dbUpdateRequest{
82 82
 		Dashboard: rawJSON(contentJSON),
83
-		Overwrite: false,
83
+		Overwrite: true,
84 84
 	}
85 85
 
86 86
 	reqBodyJSON, err := json.Marshal(reqBody)