Sha256: b4497e95ffdb49d1fe2819fc0f7ae2486bdf98877b3709b197356d9e3c802d75

Contents?: true

Size: 1.32 KB

Versions: 19

Compression:

Stored size: 1.32 KB

Contents

# Create a new dashboard with hostmap widget

require "datadog_api_client"
api_instance = DatadogAPIClient::V1::DashboardsAPI.new

body = DatadogAPIClient::V1::Dashboard.new({
  title: "Example-Dashboard",
  description: nil,
  widgets: [
    DatadogAPIClient::V1::Widget.new({
      layout: DatadogAPIClient::V1::WidgetLayout.new({
        x: 0,
        y: 0,
        width: 47,
        height: 22,
      }),
      definition: DatadogAPIClient::V1::HostMapWidgetDefinition.new({
        title: "",
        title_size: "16",
        title_align: DatadogAPIClient::V1::WidgetTextAlign::LEFT,
        type: DatadogAPIClient::V1::HostMapWidgetDefinitionType::HOSTMAP,
        requests: DatadogAPIClient::V1::HostMapWidgetDefinitionRequests.new({
          fill: DatadogAPIClient::V1::HostMapRequest.new({
            q: "avg:system.cpu.user{*} by {host}",
          }),
        }),
        node_type: DatadogAPIClient::V1::WidgetNodeType::HOST,
        no_metric_hosts: true,
        no_group_hosts: true,
        style: DatadogAPIClient::V1::HostMapWidgetDefinitionStyle.new({
          palette: "green_to_orange",
          palette_flip: false,
        }),
      }),
    }),
  ],
  template_variables: [],
  layout_type: DatadogAPIClient::V1::DashboardLayoutType::FREE,
  is_read_only: false,
  notify_list: [],
})
p api_instance.create_dashboard(body)

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
datadog_api_client-2.28.1 examples/v1/dashboards/CreateDashboard_1200099236.rb
datadog_api_client-2.27.1 examples/v1/dashboards/CreateDashboard_1200099236.rb
datadog_api_client-2.26.1 examples/v1/dashboards/CreateDashboard_1200099236.rb
datadog_api_client-2.26.0 examples/v1/dashboards/CreateDashboard_1200099236.rb
datadog_api_client-2.25.0 examples/v1/dashboards/CreateDashboard_1200099236.rb
datadog_api_client-2.24.0 examples/v1/dashboards/CreateDashboard_1200099236.rb
datadog_api_client-2.22.0 examples/v1/dashboards/CreateDashboard_1200099236.rb
datadog_api_client-2.21.0 examples/v1/dashboards/CreateDashboard_1200099236.rb
datadog_api_client-2.20.0 examples/v1/dashboards/CreateDashboard_1200099236.rb
datadog_api_client-2.19.0 examples/v1/dashboards/CreateDashboard_1200099236.rb
datadog_api_client-2.18.0 examples/v1/dashboards/CreateDashboard_1200099236.rb
datadog_api_client-2.17.0 examples/v1/dashboards/CreateDashboard_1200099236.rb
datadog_api_client-2.16.0 examples/v1/dashboards/CreateDashboard_1200099236.rb
datadog_api_client-2.15.0 examples/v1/dashboards/CreateDashboard_1200099236.rb
datadog_api_client-2.14.0 examples/v1/dashboards/CreateDashboard_1200099236.rb
datadog_api_client-2.13.0 examples/v1/dashboards/CreateDashboard_1200099236.rb
datadog_api_client-2.12.0 examples/v1/dashboards/CreateDashboard_1200099236.rb
datadog_api_client-2.11.0 examples/v1/dashboards/CreateDashboard_1200099236.rb
datadog_api_client-2.10.0 examples/v1/dashboards/CreateDashboard_1200099236.rb