Sha256: a0c4fafcc6bf0f4d234977fc75ea3f3f9b9fa759c5d216e7b9bd5ac40139d73f

Contents?: true

Size: 1.66 KB

Versions: 10

Compression:

Stored size: 1.66 KB

Contents

# Create a new dashboard with formula and function heatmap widget

require "datadog_api_client"
api_instance = DatadogAPIClient::V1::DashboardsAPI.new

body = DatadogAPIClient::V1::Dashboard.new({
  title: "Example-Dashboard",
  widgets: [
    DatadogAPIClient::V1::Widget.new({
      layout: DatadogAPIClient::V1::WidgetLayout.new({
        x: 0,
        y: 0,
        width: 47,
        height: 15,
      }),
      definition: DatadogAPIClient::V1::HeatMapWidgetDefinition.new({
        title: "",
        title_size: "16",
        title_align: DatadogAPIClient::V1::WidgetTextAlign::LEFT,
        time: DatadogAPIClient::V1::WidgetTime.new({}),
        type: DatadogAPIClient::V1::HeatMapWidgetDefinitionType::HEATMAP,
        requests: [
          DatadogAPIClient::V1::HeatMapWidgetRequest.new({
            response_format: DatadogAPIClient::V1::FormulaAndFunctionResponseFormat::TIMESERIES,
            queries: [
              DatadogAPIClient::V1::FormulaAndFunctionMetricQueryDefinition.new({
                data_source: DatadogAPIClient::V1::FormulaAndFunctionMetricDataSource::METRICS,
                name: "query1",
                query: "avg:system.cpu.user{*}",
              }),
            ],
            formulas: [
              DatadogAPIClient::V1::WidgetFormula.new({
                formula: "query1",
              }),
            ],
            style: DatadogAPIClient::V1::WidgetStyle.new({
              palette: "dog_classic",
            }),
          }),
        ],
      }),
    }),
  ],
  template_variables: [],
  layout_type: DatadogAPIClient::V1::DashboardLayoutType::FREE,
  is_read_only: false,
  notify_list: [],
})
p api_instance.create_dashboard(body)

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
datadog_api_client-2.25.0 examples/v1/dashboards/CreateDashboard_3777304439.rb
datadog_api_client-2.24.0 examples/v1/dashboards/CreateDashboard_3777304439.rb
datadog_api_client-2.22.0 examples/v1/dashboards/CreateDashboard_3777304439.rb
datadog_api_client-2.21.0 examples/v1/dashboards/CreateDashboard_3777304439.rb
datadog_api_client-2.20.0 examples/v1/dashboards/CreateDashboard_3777304439.rb
datadog_api_client-2.19.0 examples/v1/dashboards/CreateDashboard_3777304439.rb
datadog_api_client-2.18.0 examples/v1/dashboards/CreateDashboard_3777304439.rb
datadog_api_client-2.17.0 examples/v1/dashboards/CreateDashboard_3777304439.rb
datadog_api_client-2.16.0 examples/v1/dashboards/CreateDashboard_3777304439.rb
datadog_api_client-2.15.0 examples/v1/dashboards/CreateDashboard_3777304439.rb