Class: Fluentd::Setting::InForward

Inherits:
Object
  • Object
show all
Includes:
Plugin
Defined in:
app/models/fluentd/setting/in_forward.rb

Instance Method Summary collapse

Methods included from PluginParameter

#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

Methods included from Configurable

#initialize

Methods included from PluginConfig

#config_element, #parse_attributes, #skip?, #to_config, #validate_configuration

Instance Method Details

#common_optionsObject



8
9
10
11
12
13
# File 'app/models/fluentd/setting/in_forward.rb', line 8

def common_options
  [
    :label,
    :bind, :port
  ]
end

#hidden_optionsObject



15
16
17
18
19
20
21
22
# File 'app/models/fluentd/setting/in_forward.rb', line 15

def hidden_options
  [
    # We don't support TLS configuration via fluentd-ui for now.
    :transport,
    :backlog,
    :blocking_timeout,
  ]
end

#transport_advanced_optionsObject



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_optionsObject



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