Skip to content

Commit e3a2c8b

Browse files
committed
make it a url in markdown
1 parent 7145b8b commit e3a2c8b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/logstash/outputs/elasticsearch.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ class LogStash::Outputs::ElasticSearch < LogStash::Outputs::Base
5757
# This configuration option defines how the template is named inside Elasticsearch
5858
# Note that if you have used the template management features and subsequently
5959
# change this you will need to prune the old template manually, e.g.
60-
# curl -XDELETE http://localhost:9200/_template/OLD_template_name?pretty
60+
# curl -XDELETE <http://localhost:9200/_template/OLD_template_name?pretty>
6161
# where OLD_template_name is whatever the former setting was.
6262
config :template_name, :validate => :string, :default => "logstash"
6363

lib/logstash/outputs/elasticsearch_http.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ class LogStash::Outputs::ElasticSearchHTTP < LogStash::Outputs::Base
3939
# This configuration option defines how the template is named inside Elasticsearch
4040
# Note that if you have used the template management features and subsequently
4141
# change this you will need to prune the old template manually, e.g.
42-
# curl -XDELETE http://localhost:9200/_template/OLD_template_name?pretty
42+
# curl -XDELETE <http://localhost:9200/_template/OLD_template_name?pretty>
4343
# where OLD_template_name is whatever the former setting was.
4444
config :template_name, :validate => :string, :default => "logstash"
4545

0 commit comments

Comments
 (0)