Sha256: d67370636cf471bcaba348b36d2cd94547c96a3261b8d4661a25ebce1d62972c
Contents?: true
Size: 1.14 KB
Versions: 1
Compression:
Stored size: 1.14 KB
Contents
# Create a new dashboard with run-workflow 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::RunWorkflowWidgetDefinition.new({ title: "Run workflow title", title_size: "16", title_align: DatadogAPIClient::V1::WidgetTextAlign::LEFT, time: DatadogAPIClient::V1::WidgetLegacyLiveSpan.new({}), type: DatadogAPIClient::V1::RunWorkflowWidgetDefinitionType::RUN_WORKFLOW, workflow_id: "2e055f16-8b6a-4cdd-b452-17a34c44b160", inputs: [ DatadogAPIClient::V1::RunWorkflowWidgetInput.new({ name: "environment", value: "$env.value", }), ], }), }), ], template_variables: [], layout_type: DatadogAPIClient::V1::DashboardLayoutType::FREE, notify_list: [], }) p api_instance.create_dashboard(body)
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
datadog_api_client-2.29.1 | examples/v1/dashboards/CreateDashboard_2610827685.rb |