Soften deprecation language and point module deprecations to agent in… (#13338)

* Soften deprecation language and point module deprecations to agent integrations

* Remove extra `and`

Co-authored-by: Karen Metts <35154725+karenzone@users.noreply.github.com>

Co-authored-by: Karen Metts <35154725+karenzone@users.noreply.github.com>
This commit is contained in:
Rob Bavey 2021-10-26 09:39:42 -04:00 committed by GitHub
parent 1ee7a17015
commit 7952046eb8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View file

@ -15,7 +15,7 @@
# specific language governing permissions and limitations
# under the License.
<% deprecation_logger.deprecated("The Netflow module has been deprecated in favor of the Beats Netflow module and may be removed in a future release. Learn more about the Beats Netflow module at https://www.elastic.co/guide/en/beats/filebeat/master/filebeat-module-netflow.html") %>
<% deprecation_logger.deprecated("The Netflow module has been deprecated in favor of the Elastic Agent Netflow integration and may be removed in a future release. Learn more about the Elastic Agent Netflow integration at https://docs.elastic.co/en/integrations/netflow") %>
input {
udp {
type => "netflow"

View file

@ -131,7 +131,7 @@ module LogStash
return unless monitoring_enabled?(runner.settings)
deprecation_logger.deprecated(
"Internal collectors option for Logstash monitoring is deprecated and targeted for removal in the next major version.\n"\
"Internal collectors option for Logstash monitoring is deprecated and may be removed in a future release.\n"\
"Please configure Metricbeat to monitor Logstash. Documentation can be found at: \n"\
"https://www.elastic.co/guide/en/logstash/current/monitoring-with-metricbeat.html"
)

View file

@ -4,7 +4,7 @@
input{
<%=
deprecation_logger.deprecated("The Azure module has been deprecated in favor of the Beats Azure module, and may be removed in a future release. Learn more about the Beats Azure module at https://www.elastic.co/guide/en/beats/filebeat/master/filebeat-module-azure.html")
deprecation_logger.deprecated("The Azure module has been deprecated in favor of the Elastic Agent Azure integration, and may be removed in a future release. Learn more about the Elastic Agent Azure integration at https://docs.elastic.co/en/integrations/azure")
require 'azure_module_config_generator'
config_generator = LogStash::Azure::ConfigGenerator.new
config_generator.generate_input(@settings)