Module: LogStash::PluginMixins::HttpClient::Implementation
- Defined in:
- lib/logstash/plugin_mixins/http_client.rb
Class Method Summary collapse
Instance Method Summary collapse
Class Method Details
.included(base) ⇒ Object
44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 |
# File 'lib/logstash/plugin_mixins/http_client.rb', line 44 def self.included(base) require 'manticore' # Timeout (in seconds) for the entire request base.config :request_timeout, :validate => :number, :default => 60 # Timeout (in seconds) to wait for data on the socket. Default is `10s` base.config :socket_timeout, :validate => :number, :default => 10 # Timeout (in seconds) to wait for a connection to be established. Default is `10s` base.config :connect_timeout, :validate => :number, :default => 10 # Should redirects be followed? Defaults to `true` base.config :follow_redirects, :validate => :boolean, :default => true # Max number of concurrent connections. Defaults to `50` base.config :pool_max, :validate => :number, :default => 50 # Max number of concurrent connections to a single host. Defaults to `25` base.config :pool_max_per_route, :validate => :number, :default => 25 # Turn this on to enable HTTP keepalive support. We highly recommend setting `automatic_retries` to at least # one with this to fix interactions with broken keepalive implementations. base.config :keepalive, :validate => :boolean, :default => true # How many times should the client retry a failing URL. We highly recommend NOT setting this value # to zero if keepalive is enabled. Some servers incorrectly end keepalives early requiring a retry! # Note: if `retry_non_idempotent` is set only GET, HEAD, PUT, DELETE, OPTIONS, and TRACE requests will be retried. base.config :automatic_retries, :validate => :number, :default => 1 # If `automatic_retries` is enabled this will cause non-idempotent HTTP verbs (such as POST) to be retried. base.config :retry_non_idempotent, :validate => :boolean, :default => false # How long to wait before checking if the connection is stale before executing a request on a connection using keepalive. # # You may want to set this lower, possibly to 0 if you get connection errors regularly # Quoting the Apache commons docs (this client is based Apache Commmons): # 'Defines period of inactivity in milliseconds after which persistent connections must be re-validated prior to being leased to the consumer. Non-positive value passed to this method disables connection validation. This check helps detect connections that have become stale (half-closed) while kept inactive in the pool.' # See https://hc.apache.org/httpcomponents-client-ga/httpclient/apidocs/org/apache/http/impl/conn/PoolingHttpClientConnectionManager.html#setValidateAfterInactivity(int)[these docs for more info] base.config :validate_after_inactivity, :validate => :number, :default => 200 # Enable/disable the SSL configurations base.config :ssl_enabled, :validate => :boolean, :default => true # If you need to use a custom X.509 CA (.pem certs) specify the path to that here base.config :ssl_certificate_authorities, :validate => :path, :list => :true # If you'd like to use a client certificate (note, most people don't want this) set the path to the x509 cert here base.config :ssl_certificate, :validate => :path # If you're using a client certificate specify the path to the encryption key here base.config :ssl_key, :validate => :path # If you need to use a custom keystore (`.jks`) specify that here. This does not work with .pem keys! base.config :ssl_keystore_path, :validate => :path # Specify the keystore password here. # Note, most .jks files created with keytool require a password! base.config :ssl_keystore_password, :validate => :password # Specify the keystore type here. One of `jks` or `pkcs12`. # The default value is inferred from the filename. # Note: If it's unable to determine the type based on the filename, it uses the # `keystore.type` security property, or "jks" as default value. base.config :ssl_keystore_type, :validate => %w(pkcs12 jks) # Naming aligned with the Elastic stack. # full: verifies that the provided certificate is signed by a trusted authority (CA) and also verifies that the # server’s hostname (or IP address) matches the names identified within the certificate # none: no verification of the server’s certificate base.config :ssl_verification_mode, :validate => ['full', 'none'], :default => 'full' # The list of cipher suites to use, listed by priorities. # Supported cipher suites vary depending on which version of Java is used. base.config :ssl_cipher_suites, :validate => :string, :list => true # NOTE: the default setting [] uses Java SSL engine defaults. base.config :ssl_supported_protocols, :validate => ['TLSv1.1', 'TLSv1.2', 'TLSv1.3'], :default => [], :list => true # If you need to use a custom truststore (`.jks`) specify that here. This does not work with .pem certs! base.config :ssl_truststore_path, :validate => :path # Specify the truststore password here. # Note, most .jks files created with keytool require a password! base.config :ssl_truststore_password, :validate => :password # Specify the truststore type here. One of `JKS` or `PKCS12`. # The default value is inferred from the filename. # Note: If it's unable to determine the type based on the filename, it uses the # `keystore.type` security property, or "jks" as default value. base.config :ssl_truststore_type, :validate => %w(pkcs12 jks) # Enable cookie support. With this enabled the client will persist cookies # across requests as a normal web browser would. Enabled by default base.config :cookies, :validate => :boolean, :default => true # If you'd like to use an HTTP proxy . This supports multiple configuration syntaxes: # # 1. Proxy host in form: `http://proxy.org:1234` # 2. Proxy host in form: `{host => "proxy.org", port => 80, scheme => 'http', user => 'username@host', password => 'password'}` # 3. Proxy host in form: `{url => 'http://proxy.org:1234', user => 'username@host', password => 'password'}` base.config :proxy # Username to use for HTTP auth. base.config :user, :validate => :string # Password to use for HTTP auth base.config :password, :validate => :password end |
Instance Method Details
#client ⇒ Object
248 249 250 |
# File 'lib/logstash/plugin_mixins/http_client.rb', line 248 def client @client ||= make_client end |
#client_config ⇒ Object
155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 |
# File 'lib/logstash/plugin_mixins/http_client.rb', line 155 def client_config c = { connect_timeout: @connect_timeout, socket_timeout: @socket_timeout, request_timeout: @request_timeout, follow_redirects: @follow_redirects, automatic_retries: @automatic_retries, retry_non_idempotent: @retry_non_idempotent, check_connection_timeout: @validate_after_inactivity, pool_max: @pool_max, pool_max_per_route: @pool_max_per_route, cookies: @cookies, keepalive: @keepalive } if @proxy # Symbolize keys if necessary c[:proxy] = @proxy.is_a?(Hash) ? @proxy.reduce({}) {|memo,(k,v)| memo[k.to_sym] = v; memo} : @proxy end if @user if !@password || !@password.value raise ::LogStash::ConfigurationError, "User '#{@user}' specified without password!" end # Symbolize keys if necessary c[:auth] = { :user => @user, :password => @password.value, :eager => true } end c[:ssl] = c end |