Class: Fluentd::Setting::InForward
- Inherits:
-
Object
- Object
- Fluentd::Setting::InForward
show all
- Includes:
- Plugin
- Defined in:
- app/models/fluentd/setting/in_forward.rb
Instance Method Summary
collapse
#advanced_options, #all_options, #column_type, #create_buffer, #create_formatter, #create_parser, #create_storage, #default, #desc, #have_buffer_section?, #have_format_section?, #have_parse_section?, #have_storage_section?, #list_of
#initialize
#config_element, #parse_attributes, #skip?, #to_config, #validate_configuration
Instance Method Details
#common_options ⇒ Object
8
9
10
11
12
13
|
# File 'app/models/fluentd/setting/in_forward.rb', line 8
def common_options
[
:label,
:bind, :port
]
end
|
#hidden_options ⇒ Object
15
16
17
18
19
20
21
22
|
# File 'app/models/fluentd/setting/in_forward.rb', line 15
def hidden_options
[
:transport,
:backlog,
:blocking_timeout,
]
end
|
#transport_advanced_options ⇒ Object
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
# File 'app/models/fluentd/setting/in_forward.rb', line 33
def transport_advanced_options
[
:version,
:ciphers,
:insecure,
:client_cert_auth,
:ca_cert_path,
:ca_private_key_path,
:ca_private_key_passphrase,
:generate_private_key_length,
:generate_cert_country,
:generate_cert_state,
:generate_cert_locality,
:generate_cert_common_name,
:generate_cert_common_name,
:generate_cert_expiration,
:generate_cert_digest
]
end
|
#transport_common_options ⇒ Object
24
25
26
27
28
29
30
31
|
# File 'app/models/fluentd/setting/in_forward.rb', line 24
def transport_common_options
[
:ca_path,
:cert_path,
:private_key_path,
:private_key_passphrase
]
end
|