Sha256: 066548cc668b3b80cec06cbee5e1e6636e7c2148781308cdd0d497fd254fe79e

Contents?: true

Size: 1.23 KB

Versions: 1

Compression:

Stored size: 1.23 KB

Contents

# Create a new dashboard with trace_service widget

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

body = DatadogAPIClient::V1::Dashboard.new({
  title: "Example-Dashboard",
  description: "",
  widgets: [
    DatadogAPIClient::V1::Widget.new({
      layout: DatadogAPIClient::V1::WidgetLayout.new({
        x: 0,
        y: 0,
        width: 72,
        height: 72,
      }),
      definition: DatadogAPIClient::V1::ServiceSummaryWidgetDefinition.new({
        title: "Service Summary",
        time: DatadogAPIClient::V1::WidgetLegacyLiveSpan.new({}),
        type: DatadogAPIClient::V1::ServiceSummaryWidgetDefinitionType::TRACE_SERVICE,
        env: "none",
        service: "",
        span_name: "",
        show_hits: true,
        show_errors: true,
        show_latency: true,
        show_breakdown: true,
        show_distribution: true,
        show_resource_list: false,
        size_format: DatadogAPIClient::V1::WidgetSizeFormat::MEDIUM,
        display_format: DatadogAPIClient::V1::WidgetServiceSummaryDisplayFormat::TWO_COLUMN,
      }),
    }),
  ],
  template_variables: [],
  layout_type: DatadogAPIClient::V1::DashboardLayoutType::FREE,
  notify_list: [],
})
p api_instance.create_dashboard(body)

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
datadog_api_client-2.29.1 examples/v1/dashboards/CreateDashboard_2921337351.rb