Sha256: ab381c434b751779d95eaeea48b331bb4170deb61a696c9f300cea85c6e7a065

Contents?: true

Size: 1.95 KB

Versions: 6

Compression:

Stored size: 1.95 KB

Contents

# Create a new dashboard with a query value widget using timeseries background

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 QVW Timeseries Background",
  widgets: [
    DatadogAPIClient::V1::Widget.new({
      definition: DatadogAPIClient::V1::QueryValueWidgetDefinition.new({
        title_size: "16",
        title: "",
        title_align: DatadogAPIClient::V1::WidgetTextAlign::LEFT,
        precision: 2,
        time: DatadogAPIClient::V1::WidgetLegacyLiveSpan.new({}),
        autoscale: true,
        requests: [
          DatadogAPIClient::V1::QueryValueWidgetRequest.new({
            formulas: [
              DatadogAPIClient::V1::WidgetFormula.new({
                formula: "query1",
              }),
            ],
            response_format: DatadogAPIClient::V1::FormulaAndFunctionResponseFormat::SCALAR,
            queries: [
              DatadogAPIClient::V1::FormulaAndFunctionMetricQueryDefinition.new({
                query: "sum:my.cool.count.metric{*}",
                data_source: DatadogAPIClient::V1::FormulaAndFunctionMetricDataSource::METRICS,
                name: "query1",
                aggregator: DatadogAPIClient::V1::FormulaAndFunctionMetricAggregation::PERCENTILE,
              }),
            ],
          }),
        ],
        type: DatadogAPIClient::V1::QueryValueWidgetDefinitionType::QUERY_VALUE,
        timeseries_background: DatadogAPIClient::V1::TimeseriesBackground.new({
          type: DatadogAPIClient::V1::TimeseriesBackgroundType::AREA,
          yaxis: DatadogAPIClient::V1::WidgetAxis.new({
            include_zero: true,
          }),
        }),
      }),
      layout: DatadogAPIClient::V1::WidgetLayout.new({
        y: 0,
        x: 0,
        height: 2,
        width: 2,
      }),
    }),
  ],
})
p api_instance.create_dashboard(body)

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
datadog_api_client-2.30.0 examples/v1/dashboards/CreateDashboard_765140092.rb
datadog_api_client-2.29.1 examples/v1/dashboards/CreateDashboard_765140092.rb
datadog_api_client-2.28.1 examples/v1/dashboards/CreateDashboard_765140092.rb
datadog_api_client-2.27.1 examples/v1/dashboards/CreateDashboard_765140092.rb
datadog_api_client-2.26.1 examples/v1/dashboards/CreateDashboard_765140092.rb
datadog_api_client-2.26.0 examples/v1/dashboards/CreateDashboard_765140092.rb