Sha256: 76b2b4e1c2288f84ec4d222f903d2f3e8102e0e24ea52d24ef58cdd53593666d

Contents?: true

Size: 1.36 KB

Versions: 8

Compression:

Stored size: 1.36 KB

Contents

# Create a new dashboard with topology_map widget

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

body = DatadogAPIClient::V1::Dashboard.new({
  title: "Example-Create_a_new_dashboard_with_topology_map_widget",
  description: "",
  widgets: [
    DatadogAPIClient::V1::Widget.new({
      layout: DatadogAPIClient::V1::WidgetLayout.new({
        x: 0,
        y: 0,
        width: 47,
        height: 15,
      }),
      definition: DatadogAPIClient::V1::TopologyMapWidgetDefinition.new({
        title: "",
        title_size: "16",
        title_align: DatadogAPIClient::V1::WidgetTextAlign::LEFT,
        type: DatadogAPIClient::V1::TopologyMapWidgetDefinitionType::TOPOLOGY_MAP,
        requests: [
          DatadogAPIClient::V1::TopologyRequest.new({
            request_type: DatadogAPIClient::V1::TopologyRequestType::TOPOLOGY,
            query: DatadogAPIClient::V1::TopologyQuery.new({
              data_source: DatadogAPIClient::V1::TopologyQueryDataSource::SERVICE_MAP,
              service: "",
              filters: [
                "env:none",
                "environment:*",
              ],
            }),
          }),
        ],
      }),
    }),
  ],
  template_variables: [],
  layout_type: DatadogAPIClient::V1::DashboardLayoutType::FREE,
  is_read_only: false,
  notify_list: [],
})
p api_instance.create_dashboard(body)

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
datadog_api_client-2.9.0 examples/v1/dashboards/CreateDashboard_2652180930.rb
datadog_api_client-2.8.0 examples/v1/dashboards/CreateDashboard_2652180930.rb
datadog_api_client-2.7.0 examples/v1/dashboards/CreateDashboard_2652180930.rb
datadog_api_client-2.6.0 examples/v1/dashboards/CreateDashboard_2652180930.rb
datadog_api_client-2.5.0 examples/v1/dashboards/CreateDashboard_2652180930.rb
datadog_api_client-2.4.0 examples/v1/dashboards/CreateDashboard_2652180930.rb
datadog_api_client-2.3.0 examples/v1/dashboards/CreateDashboard_2652180930.rb
datadog_api_client-2.2.0 examples/v1/dashboards/CreateDashboard_2652180930.rb