Sha256: ad819cd76b19fb514e7791181c2743269fd0981492dd6bf636e9e6d5a8e7e423
Contents?: true
Size: 1.3 KB
Versions: 6
Compression:
Stored size: 1.3 KB
Contents
# DatadogAPIClient::V1::LogsIndex ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **daily_limit** | **Integer** | The number of log events you can send in this index per day before you are rate-limited. | [optional] | | **exclusion_filters** | [**Array<LogsExclusion>**](LogsExclusion.md) | An array of exclusion objects. The logs are tested against the query of each filter, following the order of the array. Only the first matching active exclusion matters, others (if any) are ignored. | [optional] | | **filter** | [**LogsFilter**](LogsFilter.md) | | | | **is_rate_limited** | **Boolean** | A boolean stating if the index is rate limited, meaning more logs than the daily limit have been sent. Rate limit is reset every-day at 2pm UTC. | [optional][readonly] | | **name** | **String** | The name of the index. | | | **num_retention_days** | **Integer** | The number of days before logs are deleted from this index. Available values depend on retention plans specified in your organization's contract/subscriptions. | [optional] | ## Example ```ruby require 'datadog_api_client/v1' instance = DatadogAPIClient::V1::LogsIndex.new( daily_limit: 300000000, exclusion_filters: null, filter: null, is_rate_limited: false, name: main, num_retention_days: 15 ) ```
Version data entries
6 entries across 6 versions & 1 rubygems