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, body) ⇒ BadResponseCodeError

Returns a new instance of BadResponseCodeError.



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

def initialize(response_code, url, body)
  @response_code = response_code
  @url = ::LogStash::Outputs::ElasticSearch::SafeURL.without_credentials(url)
  @body = body
end

Instance Attribute Details

#bodyObject (readonly)

Returns the value of attribute body.



5
6
7
# File 'lib/logstash/outputs/elasticsearch/http_client/pool.rb', line 5

def body
  @body
end

#response_codeObject (readonly)

Returns the value of attribute response_code.



5
6
7
# File 'lib/logstash/outputs/elasticsearch/http_client/pool.rb', line 5

def response_code
  @response_code
end

#urlObject (readonly)

Returns the value of attribute url.



5
6
7
# File 'lib/logstash/outputs/elasticsearch/http_client/pool.rb', line 5

def url
  @url
end

Instance Method Details

#messageObject



13
14
15
# File 'lib/logstash/outputs/elasticsearch/http_client/pool.rb', line 13

def message
  "Got response code '#{response_code}' contact Elasticsearch at URL '#{@url}'"
end