Sha256: 6c3b5ee94defbc203ffe09f3432a44fa9bc7f94629a876bf7fcb678a8e4ae984

Contents?: true

Size: 1.14 KB

Versions: 19

Compression:

Stored size: 1.14 KB

Contents

# Create a new dashboard with timeseries widget containing style attributes

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

body = DatadogAPIClient::V1::Dashboard.new({
  layout_type: DatadogAPIClient::V1::DashboardLayoutType::ORDERED,
  title: "Example-Dashboard with timeseries widget",
  widgets: [
    DatadogAPIClient::V1::Widget.new({
      definition: DatadogAPIClient::V1::TimeseriesWidgetDefinition.new({
        type: DatadogAPIClient::V1::TimeseriesWidgetDefinitionType::TIMESERIES,
        requests: [
          DatadogAPIClient::V1::TimeseriesWidgetRequest.new({
            q: "sum:trace.test.errors{env:prod,service:datadog-api-spec} by {resource_name}.as_count()",
            on_right_yaxis: false,
            style: DatadogAPIClient::V1::WidgetRequestStyle.new({
              palette: "warm",
              line_type: DatadogAPIClient::V1::WidgetLineType::SOLID,
              line_width: DatadogAPIClient::V1::WidgetLineWidth::NORMAL,
            }),
            display_type: DatadogAPIClient::V1::WidgetDisplayType::BARS,
          }),
        ],
      }),
    }),
  ],
})
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_3982498788.rb
datadog_api_client-2.27.1 examples/v1/dashboards/CreateDashboard_3982498788.rb
datadog_api_client-2.26.1 examples/v1/dashboards/CreateDashboard_3982498788.rb
datadog_api_client-2.26.0 examples/v1/dashboards/CreateDashboard_3982498788.rb
datadog_api_client-2.25.0 examples/v1/dashboards/CreateDashboard_3982498788.rb
datadog_api_client-2.24.0 examples/v1/dashboards/CreateDashboard_3982498788.rb
datadog_api_client-2.22.0 examples/v1/dashboards/CreateDashboard_3982498788.rb
datadog_api_client-2.21.0 examples/v1/dashboards/CreateDashboard_3982498788.rb
datadog_api_client-2.20.0 examples/v1/dashboards/CreateDashboard_3982498788.rb
datadog_api_client-2.19.0 examples/v1/dashboards/CreateDashboard_3982498788.rb
datadog_api_client-2.18.0 examples/v1/dashboards/CreateDashboard_3982498788.rb
datadog_api_client-2.17.0 examples/v1/dashboards/CreateDashboard_3982498788.rb
datadog_api_client-2.16.0 examples/v1/dashboards/CreateDashboard_3982498788.rb
datadog_api_client-2.15.0 examples/v1/dashboards/CreateDashboard_3982498788.rb
datadog_api_client-2.14.0 examples/v1/dashboards/CreateDashboard_3982498788.rb
datadog_api_client-2.13.0 examples/v1/dashboards/CreateDashboard_3982498788.rb
datadog_api_client-2.12.0 examples/v1/dashboards/CreateDashboard_3982498788.rb
datadog_api_client-2.11.0 examples/v1/dashboards/CreateDashboard_3982498788.rb
datadog_api_client-2.10.0 examples/v1/dashboards/CreateDashboard_3982498788.rb