Sha256: 8bb4450714e5d7bbf0aa1081eae7d440fd5176c55aea741acd37bb38119e7338

Contents?: true

Size: 1.21 KB

Versions: 18

Compression:

Stored size: 1.21 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-Create_a_new_dashboard_with_timeseries_widget_containing_style_attributes 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

18 entries across 18 versions & 1 rubygems

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