Sha256: 366c2cea6af6770e9c28204754bb68b2a18e7bc49a886efd09977bb9d87cb845

Contents?: true

Size: 1.32 KB

Versions: 18

Compression:

Stored size: 1.32 KB

Contents

# Create a new dashboard with log_stream widget

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

body = DatadogAPIClient::V1::Dashboard.new({
  title: "Example-Create_a_new_dashboard_with_log_stream_widget",
  description: "",
  widgets: [
    DatadogAPIClient::V1::Widget.new({
      layout: DatadogAPIClient::V1::WidgetLayout.new({
        x: 0,
        y: 0,
        width: 47,
        height: 36,
      }),
      definition: DatadogAPIClient::V1::LogStreamWidgetDefinition.new({
        title: "",
        title_size: "16",
        title_align: DatadogAPIClient::V1::WidgetTextAlign::LEFT,
        type: DatadogAPIClient::V1::LogStreamWidgetDefinitionType::LOG_STREAM,
        indexes: [
          "main",
        ],
        query: "",
        sort: DatadogAPIClient::V1::WidgetFieldSort.new({
          column: "time",
          order: DatadogAPIClient::V1::WidgetSort::DESCENDING,
        }),
        columns: [
          "host",
          "service",
        ],
        show_date_column: true,
        show_message_column: true,
        message_display: DatadogAPIClient::V1::WidgetMessageDisplay::EXPANDED_MEDIUM,
      }),
    }),
  ],
  template_variables: [],
  layout_type: DatadogAPIClient::V1::DashboardLayoutType::FREE,
  is_read_only: false,
  notify_list: [],
})
p api_instance.create_dashboard(body)

Version data entries

18 entries across 18 versions & 1 rubygems

Version Path
datadog_api_client-2.9.0 examples/v1/dashboards/CreateDashboard_2029850837.rb
datadog_api_client-2.8.0 examples/v1/dashboards/CreateDashboard_2029850837.rb
datadog_api_client-2.7.0 examples/v1/dashboards/CreateDashboard_2029850837.rb
datadog_api_client-2.6.0 examples/v1/dashboards/CreateDashboard_2029850837.rb
datadog_api_client-2.5.0 examples/v1/dashboards/CreateDashboard_2029850837.rb
datadog_api_client-2.4.0 examples/v1/dashboards/CreateDashboard_2029850837.rb
datadog_api_client-2.3.0 examples/v1/dashboards/CreateDashboard_2029850837.rb
datadog_api_client-2.2.0 examples/v1/dashboards/CreateDashboard_2029850837.rb
datadog_api_client-2.1.0 examples/v1/dashboards/CreateDashboard_2029850837.rb
datadog_api_client-2.0.2 examples/v1/dashboards/CreateDashboard_2029850837.rb
datadog_api_client-2.0.1 examples/v1/dashboards/CreateDashboard_2029850837.rb
datadog_api_client-2.0.0 examples/v1/dashboards/CreateDashboard_2029850837.rb
datadog_api_client-1.11.0 examples/v1/dashboards/CreateDashboard_2029850837.rb
datadog_api_client-1.10.0 examples/v1/dashboards/CreateDashboard_2029850837.rb
datadog_api_client-1.9.0 examples/v1/dashboards/CreateDashboard_2029850837.rb
datadog_api_client-1.8.0 examples/v1/dashboards/CreateDashboard_2029850837.rb
datadog_api_client-1.7.0 examples/v1/dashboards/CreateDashboard_2029850837.rb
datadog_api_client-1.6.0 examples/v1/dashboards/CreateDashboard_2029850837.rb