Sha256: 25333160803d4107ad54e437073749a2f561dc3865548d8bbb7792f9a47193af

Contents?: true

Size: 1.55 KB

Versions: 15

Compression:

Stored size: 1.55 KB

Contents

# Create a new dashboard with query_value widget

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: 47,
        height: 15,
      }),
      definition: DatadogAPIClient::V1::QueryValueWidgetDefinition.new({
        title: "",
        title_size: "16",
        title_align: DatadogAPIClient::V1::WidgetTextAlign::LEFT,
        time: DatadogAPIClient::V1::WidgetTime.new({}),
        type: DatadogAPIClient::V1::QueryValueWidgetDefinitionType::QUERY_VALUE,
        requests: [
          DatadogAPIClient::V1::QueryValueWidgetRequest.new({
            response_format: DatadogAPIClient::V1::FormulaAndFunctionResponseFormat::SCALAR,
            queries: [
              DatadogAPIClient::V1::FormulaAndFunctionMetricQueryDefinition.new({
                name: "query1",
                data_source: DatadogAPIClient::V1::FormulaAndFunctionMetricDataSource::METRICS,
                query: "avg:system.cpu.user{*}",
                aggregator: DatadogAPIClient::V1::FormulaAndFunctionMetricAggregation::AVG,
              }),
            ],
          }),
        ],
        autoscale: true,
        precision: 2,
      }),
    }),
  ],
  template_variables: [],
  layout_type: DatadogAPIClient::V1::DashboardLayoutType::FREE,
  is_read_only: false,
  notify_list: [],
})
p api_instance.create_dashboard(body)

Version data entries

15 entries across 15 versions & 1 rubygems

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