Class: Google::Apis::LoggingV2::LogExclusion
- Inherits:
-
Object
- Object
- Google::Apis::LoggingV2::LogExclusion
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/logging_v2/classes.rb,
generated/google/apis/logging_v2/representations.rb,
generated/google/apis/logging_v2/representations.rb
Overview
Specifies a set of log entries that are not to be stored in Logging. If your project receives a large volume of logs, you might be able to use exclusions to reduce your chargeable logs. Exclusions are processed after log sinks, so you can export log entries before they are excluded. Audit log entries and log entries from Amazon Web Services are never excluded.
Instance Attribute Summary collapse
-
#create_time ⇒ String
Output only.
-
#description ⇒ String
Optional.
-
#disabled ⇒ Boolean
(also: #disabled?)
Optional.
-
#filter ⇒ String
Required.
-
#name ⇒ String
Required.
-
#update_time ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ LogExclusion
constructor
A new instance of LogExclusion.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ LogExclusion
Returns a new instance of LogExclusion
900 901 902 |
# File 'generated/google/apis/logging_v2/classes.rb', line 900 def initialize(**args) update!(**args) end |
Instance Attribute Details
#create_time ⇒ String
Output only. The creation timestamp of the exclusion.This field may not be
present for older exclusions.
Corresponds to the JSON property createTime
863 864 865 |
# File 'generated/google/apis/logging_v2/classes.rb', line 863 def create_time @create_time end |
#description ⇒ String
Optional. A description of this exclusion.
Corresponds to the JSON property description
868 869 870 |
# File 'generated/google/apis/logging_v2/classes.rb', line 868 def description @description end |
#disabled ⇒ Boolean Also known as: disabled?
Optional. If set to True, then this exclusion is disabled and it does not
exclude any log entries. You can update an exclusion to change the value of
this field.
Corresponds to the JSON property disabled
875 876 877 |
# File 'generated/google/apis/logging_v2/classes.rb', line 875 def disabled @disabled end |
#filter ⇒ String
Required. An advanced logs filter that matches the log entries to be excluded.
By using the sample function, you can exclude less than 100% of the matching
log entries. For example, the following filter matches 99% of low-severity log
entries from load balancers:"resource.type=http_load_balancer severity<ERROR
sample(insertId, 0.99)"
Corresponds to the JSON property filter
885 886 887 |
# File 'generated/google/apis/logging_v2/classes.rb', line 885 def filter @filter end |
#name ⇒ String
Required. A client-assigned identifier, such as "load-balancer-exclusion".
Identifiers are limited to 100 characters and can include only letters, digits,
underscores, hyphens, and periods.
Corresponds to the JSON property name
892 893 894 |
# File 'generated/google/apis/logging_v2/classes.rb', line 892 def name @name end |
#update_time ⇒ String
Output only. The last update timestamp of the exclusion.This field may not be
present for older exclusions.
Corresponds to the JSON property updateTime
898 899 900 |
# File 'generated/google/apis/logging_v2/classes.rb', line 898 def update_time @update_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
905 906 907 908 909 910 911 912 |
# File 'generated/google/apis/logging_v2/classes.rb', line 905 def update!(**args) @create_time = args[:create_time] if args.key?(:create_time) @description = args[:description] if args.key?(:description) @disabled = args[:disabled] if args.key?(:disabled) @filter = args[:filter] if args.key?(:filter) @name = args[:name] if args.key?(:name) @update_time = args[:update_time] if args.key?(:update_time) end |