Sha256: 329103c69dd76c4909f8f7aa751e2358cb6f804c04dcdc3a5cde7668644fda60

Contents?: true

Size: 1.4 KB

Versions: 19

Compression:

Stored size: 1.4 KB

Contents

# Create a new dashboard with slo list widget with sort

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: 60,
        height: 21,
      }),
      definition: DatadogAPIClient::V1::SLOListWidgetDefinition.new({
        title_size: "16",
        title_align: DatadogAPIClient::V1::WidgetTextAlign::LEFT,
        type: DatadogAPIClient::V1::SLOListWidgetDefinitionType::SLO_LIST,
        requests: [
          DatadogAPIClient::V1::SLOListWidgetRequest.new({
            query: DatadogAPIClient::V1::SLOListWidgetQuery.new({
              query_string: "env:prod AND service:my-app",
              limit: 75,
              sort: [
                DatadogAPIClient::V1::WidgetFieldSort.new({
                  column: "status.sli",
                  order: DatadogAPIClient::V1::WidgetSort::ASCENDING,
                }),
              ],
            }),
            request_type: DatadogAPIClient::V1::SLOListWidgetRequestType::SLO_LIST,
          }),
        ],
      }),
    }),
  ],
  template_variables: [],
  layout_type: DatadogAPIClient::V1::DashboardLayoutType::FREE,
  is_read_only: false,
  notify_list: [],
})
p api_instance.create_dashboard(body)

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
datadog_api_client-2.28.1 examples/v1/dashboards/CreateDashboard_109450134.rb
datadog_api_client-2.27.1 examples/v1/dashboards/CreateDashboard_109450134.rb
datadog_api_client-2.26.1 examples/v1/dashboards/CreateDashboard_109450134.rb
datadog_api_client-2.26.0 examples/v1/dashboards/CreateDashboard_109450134.rb
datadog_api_client-2.25.0 examples/v1/dashboards/CreateDashboard_109450134.rb
datadog_api_client-2.24.0 examples/v1/dashboards/CreateDashboard_109450134.rb
datadog_api_client-2.22.0 examples/v1/dashboards/CreateDashboard_109450134.rb
datadog_api_client-2.21.0 examples/v1/dashboards/CreateDashboard_109450134.rb
datadog_api_client-2.20.0 examples/v1/dashboards/CreateDashboard_109450134.rb
datadog_api_client-2.19.0 examples/v1/dashboards/CreateDashboard_109450134.rb
datadog_api_client-2.18.0 examples/v1/dashboards/CreateDashboard_109450134.rb
datadog_api_client-2.17.0 examples/v1/dashboards/CreateDashboard_109450134.rb
datadog_api_client-2.16.0 examples/v1/dashboards/CreateDashboard_109450134.rb
datadog_api_client-2.15.0 examples/v1/dashboards/CreateDashboard_109450134.rb
datadog_api_client-2.14.0 examples/v1/dashboards/CreateDashboard_109450134.rb
datadog_api_client-2.13.0 examples/v1/dashboards/CreateDashboard_109450134.rb
datadog_api_client-2.12.0 examples/v1/dashboards/CreateDashboard_109450134.rb
datadog_api_client-2.11.0 examples/v1/dashboards/CreateDashboard_109450134.rb
datadog_api_client-2.10.0 examples/v1/dashboards/CreateDashboard_109450134.rb