Sha256: e6a447088bdcb2c7ce90a30cec189624c88947ecafcff97c76d2417c8954d417

Contents?: true

Size: 1.29 KB

Versions: 8

Compression:

Stored size: 1.29 KB

Contents

# Create a new dashboard with logs_stream list_stream widget and storage parameter

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_logs_stream_list_stream_widget_and_storage_parameter 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::LOGS_STREAM,
              query_string: "",
              storage: "hot",
            }),
            response_format: DatadogAPIClient::V1::ListStreamResponseFormat::EVENT_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_3117424216.rb
datadog_api_client-2.8.0 examples/v1/dashboards/CreateDashboard_3117424216.rb
datadog_api_client-2.7.0 examples/v1/dashboards/CreateDashboard_3117424216.rb
datadog_api_client-2.6.0 examples/v1/dashboards/CreateDashboard_3117424216.rb
datadog_api_client-2.5.0 examples/v1/dashboards/CreateDashboard_3117424216.rb
datadog_api_client-2.4.0 examples/v1/dashboards/CreateDashboard_3117424216.rb
datadog_api_client-2.3.0 examples/v1/dashboards/CreateDashboard_3117424216.rb
datadog_api_client-2.2.0 examples/v1/dashboards/CreateDashboard_3117424216.rb