Sha256: 49e7e9270c7b641fecd4eae5aac7ad6a1e1a4eebca07d6ad80aa01e90fcb1d2b
Contents?: true
Size: 1.58 KB
Versions: 1
Compression:
Stored size: 1.58 KB
Contents
# Create a new dashboard with logs_pattern_stream list_stream widget 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 list_stream widget", widgets: [ DatadogAPIClient::V1::Widget.new({ definition: DatadogAPIClient::V1::ListStreamWidgetDefinition.new({ type: DatadogAPIClient::V1::ListStreamWidgetDefinitionType::LIST_STREAM, requests: [ DatadogAPIClient::V1::ListStreamWidgetRequest.new({ columns: [ DatadogAPIClient::V1::ListStreamColumn.new({ width: DatadogAPIClient::V1::ListStreamColumnWidth::AUTO, field: "timestamp", }), DatadogAPIClient::V1::ListStreamColumn.new({ width: DatadogAPIClient::V1::ListStreamColumnWidth::AUTO, field: "message", }), ], query: DatadogAPIClient::V1::ListStreamQuery.new({ data_source: DatadogAPIClient::V1::ListStreamSource::LOGS_PATTERN_STREAM, query_string: "", clustering_pattern_field_path: "message", group_by: [ DatadogAPIClient::V1::ListStreamGroupByItems.new({ facet: "service", }), ], }), response_format: DatadogAPIClient::V1::ListStreamResponseFormat::EVENT_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_1039800684.rb |