-
Notifications
You must be signed in to change notification settings - Fork 54
/
CreateDashboard_651038379.go
53 lines (47 loc) · 1.57 KB
/
CreateDashboard_651038379.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
// Create a new dashboard with image widget
package main
import (
"context"
"encoding/json"
"fmt"
"os"
"github.com/DataDog/datadog-api-client-go/v2/api/datadog"
"github.com/DataDog/datadog-api-client-go/v2/api/datadogV1"
)
func main() {
body := datadogV1.Dashboard{
Title: "Example-Dashboard",
Description: *datadog.NewNullableString(datadog.PtrString("")),
Widgets: []datadogV1.Widget{
{
Layout: &datadogV1.WidgetLayout{
X: 0,
Y: 0,
Width: 12,
Height: 12,
},
Definition: datadogV1.WidgetDefinition{
ImageWidgetDefinition: &datadogV1.ImageWidgetDefinition{
Type: datadogV1.IMAGEWIDGETDEFINITIONTYPE_IMAGE,
Url: "https://example.com/image.png",
Sizing: datadogV1.WIDGETIMAGESIZING_COVER.Ptr(),
}},
},
},
TemplateVariables: []datadogV1.DashboardTemplateVariable{},
LayoutType: datadogV1.DASHBOARDLAYOUTTYPE_FREE,
IsReadOnly: datadog.PtrBool(false),
NotifyList: *datadog.NewNullableList(&[]string{}),
}
ctx := datadog.NewDefaultContext(context.Background())
configuration := datadog.NewConfiguration()
apiClient := datadog.NewAPIClient(configuration)
api := datadogV1.NewDashboardsApi(apiClient)
resp, r, err := api.CreateDashboard(ctx, body)
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `DashboardsApi.CreateDashboard`: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
responseContent, _ := json.MarshalIndent(resp, "", " ")
fmt.Fprintf(os.Stdout, "Response from `DashboardsApi.CreateDashboard`:\n%s\n", responseContent)
}