Class: LogStash::Outputs::ElasticSearch::HttpClient::Pool::BadResponseCodeError

Inherits:
Error
  • Object
show all
Defined in:
lib/logstash/outputs/elasticsearch/http_client/pool.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(response_code, url, request_body, response_body) ⇒ BadResponseCodeError

Returns a new instance of BadResponseCodeError.



10
11
12
13
14
15
16
17
# File 'lib/logstash/outputs/elasticsearch/http_client/pool.rb', line 10

def initialize(response_code, url, request_body, response_body)
  super("Got response code '#{response_code}' contacting Elasticsearch at URL '#{url}'")

  @response_code = response_code
  @url = url
  @request_body = request_body
  @response_body = response_body
end

Instance Attribute Details

#request_bodyObject (readonly)

Returns the value of attribute request_body.



8
9
10
# File 'lib/logstash/outputs/elasticsearch/http_client/pool.rb', line 8

def request_body
  @request_body
end

#response_bodyObject (readonly)

Returns the value of attribute response_body.



8
9
10
# File 'lib/logstash/outputs/elasticsearch/http_client/pool.rb', line 8

def response_body
  @response_body
end

#response_codeObject (readonly)

Returns the value of attribute response_code.



8
9
10
# File 'lib/logstash/outputs/elasticsearch/http_client/pool.rb', line 8

def response_code
  @response_code
end

#urlObject (readonly)

Returns the value of attribute url.



8
9
10
# File 'lib/logstash/outputs/elasticsearch/http_client/pool.rb', line 8

def url
  @url
end

Instance Method Details

#forbidden?Boolean

Returns:

  • (Boolean)


27
28
29
# File 'lib/logstash/outputs/elasticsearch/http_client/pool.rb', line 27

def forbidden?
  @response_code == 403
end

#invalid_credentials?Boolean

Returns:

  • (Boolean)


23
24
25
# File 'lib/logstash/outputs/elasticsearch/http_client/pool.rb', line 23

def invalid_credentials?
  @response_code == 401
end

#invalid_eav_header?Boolean

Returns:

  • (Boolean)


19
20
21
# File 'lib/logstash/outputs/elasticsearch/http_client/pool.rb', line 19

def invalid_eav_header?
  @response_code == 400 && @response_body&.include?(ELASTIC_API_VERSION)
end

#too_many_requests?Boolean

Returns:

  • (Boolean)


31
32
33
# File 'lib/logstash/outputs/elasticsearch/http_client/pool.rb', line 31

def too_many_requests?
  @response_code == 429
end