Sha256: 3acaa1ac89cca39d3489c2bab988410b2c70f61fe163a1e8045f268ae19fbaf7

Contents?: true

Size: 1.68 KB

Versions: 15

Compression:

Stored size: 1.68 KB

Contents

# Create a new dashboard with a query value widget using the percentile aggregator

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 Percentile Aggregator",
  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::WidgetTime.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: "p90:dist.dd.dogweb.latency{*}",
                data_source: DatadogAPIClient::V1::FormulaAndFunctionMetricDataSource::METRICS,
                name: "query1",
                aggregator: DatadogAPIClient::V1::FormulaAndFunctionMetricAggregation::PERCENTILE,
              }),
            ],
          }),
        ],
        type: DatadogAPIClient::V1::QueryValueWidgetDefinitionType::QUERY_VALUE,
      }),
      layout: DatadogAPIClient::V1::WidgetLayout.new({
        y: 0,
        x: 0,
        height: 2,
        width: 2,
      }),
    }),
  ],
})
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_2644712913.rb
datadog_api_client-2.24.0 examples/v1/dashboards/CreateDashboard_2644712913.rb
datadog_api_client-2.22.0 examples/v1/dashboards/CreateDashboard_2644712913.rb
datadog_api_client-2.21.0 examples/v1/dashboards/CreateDashboard_2644712913.rb
datadog_api_client-2.20.0 examples/v1/dashboards/CreateDashboard_2644712913.rb
datadog_api_client-2.19.0 examples/v1/dashboards/CreateDashboard_2644712913.rb
datadog_api_client-2.18.0 examples/v1/dashboards/CreateDashboard_2644712913.rb
datadog_api_client-2.17.0 examples/v1/dashboards/CreateDashboard_2644712913.rb
datadog_api_client-2.16.0 examples/v1/dashboards/CreateDashboard_2644712913.rb
datadog_api_client-2.15.0 examples/v1/dashboards/CreateDashboard_2644712913.rb
datadog_api_client-2.14.0 examples/v1/dashboards/CreateDashboard_2644712913.rb
datadog_api_client-2.13.0 examples/v1/dashboards/CreateDashboard_2644712913.rb
datadog_api_client-2.12.0 examples/v1/dashboards/CreateDashboard_2644712913.rb
datadog_api_client-2.11.0 examples/v1/dashboards/CreateDashboard_2644712913.rb
datadog_api_client-2.10.0 examples/v1/dashboards/CreateDashboard_2644712913.rb