Sha256: 5ac4fdb3808dfd063685ad95ca6fb7fe700f8c32ae0e9a8fc989afdb8b5ecd27
Contents?: true
Size: 721 Bytes
Versions: 34
Compression:
Stored size: 721 Bytes
Contents
# Add custom screenboard dashboard to an existing dashboard list returns "OK" response require "datadog_api_client" api_instance = DatadogAPIClient::V2::DashboardListsAPI.new # there is a valid "dashboard_list" in the system DASHBOARD_LIST_ID = ENV["DASHBOARD_LIST_ID"] # there is a valid "screenboard_dashboard" in the system SCREENBOARD_DASHBOARD_ID = ENV["SCREENBOARD_DASHBOARD_ID"] body = DatadogAPIClient::V2::DashboardListAddItemsRequest.new({ dashboards: [ DatadogAPIClient::V2::DashboardListItemRequest.new({ id: SCREENBOARD_DASHBOARD_ID, type: DatadogAPIClient::V2::DashboardType::CUSTOM_SCREENBOARD, }), ], }) p api_instance.create_dashboard_list_items(DASHBOARD_LIST_ID.to_i, body)
Version data entries
34 entries across 34 versions & 1 rubygems