File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -137,7 +137,7 @@ class LogStash::Outputs::OpenSearch < LogStash::Outputs::Base
137137
138138 config :document_type ,
139139 :validate => :string ,
140- :deprecated => "Document types are being deprecated in OpenSearch 6.0, and removed entirely in 7.0 . You should avoid this feature"
140+ :deprecated => "Document types are removed entirely. You should avoid this feature"
141141
142142 # From Logstash 1.3 onwards, a template is applied to Elasticsearch during
143143 # Logstash's startup if one with the name `template_name` does not already exist.
Original file line number Diff line number Diff line change 1010module LogStash ; module PluginMixins ; module OpenSearch
1111 module APIConfigs
1212
13- # This module defines common options that can be reused by alternate OpenSearch output plugins such as the OpenSearch_data_streams output .
13+ # This module defines common options that can be reused by alternate OpenSearch output plugins.
1414
1515 DEFAULT_HOST = ::LogStash ::Util ::SafeURI . new ( "//127.0.0.1" )
1616
@@ -129,7 +129,7 @@ module APIConfigs
129129 # See https://hc.apache.org/httpcomponents-client-ga/httpclient/apidocs/org/apache/http/impl/conn/PoolingHttpClientConnectionManager.html#setValidateAfterInactivity(int)[these docs for more info]
130130 :validate_after_inactivity => { :validate => :number , :default => 10000 } ,
131131
132- # Enable gzip compression on requests. Note that response compression is on by default for OpenSearch v5.0 and beyond
132+ # Enable gzip compression on requests.
133133 :http_compression => { :validate => :boolean , :default => false } ,
134134
135135 # Custom Headers to send on each request to OpenSearch nodes
Original file line number Diff line number Diff line change 1212module LogStash ; module PluginMixins ; module OpenSearch
1313 module Common
1414
15- # This module defines common methods that can be reused by alternate elasticsearch output plugins such as the OpenSearch_data_streams output .
15+ # This module defines common methods that can be reused by alternate opensearch output plugins.
1616
1717 attr_reader :hosts
1818
You can’t perform that action at this time.
0 commit comments