Sha256: 17a4a7600dbf43e8f84eb5db29241cca7d8ad58e27e355b7ffa29ba8e193766a

Contents?: true

Size: 1.33 KB

Versions: 9

Compression:

Stored size: 1.33 KB

Contents

# Create an Elasticsearch custom destination returns "OK" response

require "datadog_api_client"
api_instance = DatadogAPIClient::V2::LogsCustomDestinationsAPI.new

body = DatadogAPIClient::V2::CustomDestinationCreateRequest.new({
  data: DatadogAPIClient::V2::CustomDestinationCreateRequestDefinition.new({
    attributes: DatadogAPIClient::V2::CustomDestinationCreateRequestAttributes.new({
      enabled: false,
      forward_tags: false,
      forward_tags_restriction_list: [
        "datacenter",
        "host",
      ],
      forward_tags_restriction_list_type: DatadogAPIClient::V2::CustomDestinationAttributeTagsRestrictionListType::ALLOW_LIST,
      forwarder_destination: DatadogAPIClient::V2::CustomDestinationForwardDestinationElasticsearch.new({
        auth: DatadogAPIClient::V2::CustomDestinationElasticsearchDestinationAuth.new({
          username: "my-username",
          password: "my-password",
        }),
        index_name: "nginx-logs",
        index_rotation: "yyyy-MM-dd",
        endpoint: "https://example.com",
        type: DatadogAPIClient::V2::CustomDestinationForwardDestinationElasticsearchType::ELASTICSEARCH,
      }),
      name: "Nginx logs",
      query: "source:nginx",
    }),
    type: DatadogAPIClient::V2::CustomDestinationType::CUSTOM_DESTINATION,
  }),
})
p api_instance.create_logs_custom_destination(body)

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
datadog_api_client-2.29.1 examples/v2/logs-custom-destinations/CreateLogsCustomDestination_141236188.rb
datadog_api_client-2.28.1 examples/v2/logs-custom-destinations/CreateLogsCustomDestination_141236188.rb
datadog_api_client-2.27.1 examples/v2/logs-custom-destinations/CreateLogsCustomDestination_141236188.rb
datadog_api_client-2.26.1 examples/v2/logs-custom-destinations/CreateLogsCustomDestination_141236188.rb
datadog_api_client-2.26.0 examples/v2/logs-custom-destinations/CreateLogsCustomDestination_141236188.rb
datadog_api_client-2.25.0 examples/v2/logs-custom-destinations/CreateLogsCustomDestination_141236188.rb
datadog_api_client-2.24.0 examples/v2/logs-custom-destinations/CreateLogsCustomDestination_141236188.rb
datadog_api_client-2.22.0 examples/v2/logs-custom-destinations/CreateLogsCustomDestination_141236188.rb
datadog_api_client-2.21.0 examples/v2/logs-custom-destinations/CreateLogsCustomDestination_141236188.rb