Sha256: 0a4fa5a62f5ee2c55af8afa3b12d1f8266c1535f7721557bc18691ad3b575d88

Contents?: true

Size: 1.75 KB

Versions: 18

Compression:

Stored size: 1.75 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-Create_a_new_dashboard_with_a_query_value_widget_using_the_percentile_aggregator 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

18 entries across 18 versions & 1 rubygems

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