Sha256: 8e0bb3c029f27fecd20c8ba8e522fa1cfe6dbf5985da11808bffa07d76eccadc

Contents?: true

Size: 1.2 KB

Versions: 15

Compression:

Stored size: 1.2 KB

Contents

# Create a new dashboard with list_stream widget

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

body = DatadogAPIClient::V1::Dashboard.new({
  layout_type: DatadogAPIClient::V1::DashboardLayoutType::ORDERED,
  title: "Example-Create_a_new_dashboard_with_list_stream_widget with list_stream widget",
  widgets: [
    DatadogAPIClient::V1::Widget.new({
      definition: DatadogAPIClient::V1::ListStreamWidgetDefinition.new({
        type: DatadogAPIClient::V1::ListStreamWidgetDefinitionType::LIST_STREAM,
        requests: [
          DatadogAPIClient::V1::ListStreamWidgetRequest.new({
            columns: [
              DatadogAPIClient::V1::ListStreamColumn.new({
                width: DatadogAPIClient::V1::ListStreamColumnWidth::AUTO,
                field: "timestamp",
              }),
            ],
            query: DatadogAPIClient::V1::ListStreamQuery.new({
              data_source: DatadogAPIClient::V1::ListStreamSource::APM_ISSUE_STREAM,
              query_string: "",
            }),
            response_format: DatadogAPIClient::V1::ListStreamResponseFormat::EVENT_LIST,
          }),
        ],
      }),
    }),
  ],
})
p api_instance.create_dashboard(body)

Version data entries

15 entries across 15 versions & 1 rubygems

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