Skip to content

Commit

Permalink
Merge pull request elastic#1093 from untergeek/docfix-untergeek
Browse files Browse the repository at this point in the history
Docfix untergeek
  • Loading branch information
untergeek committed Feb 19, 2014
2 parents bcafd15 + 3a04b15 commit 199f8d3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 12 deletions.
1 change: 1 addition & 0 deletions docs/index.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ layout: content_right
<h3> For Users </h3>
<ul>
<li> <a href="https://download.elasticsearch.org/logstash/logstash/logstash-%VERSION%.tar.gz"> download logstash %VERSION% </a> </li>
<li> <a href="contrib-plugins"> contrib plugins</a> </li>
<li> <a href="repositories"> package repositories</a> </li>
<li> <a href="configuration"> configuration file overview </a> </li>
<li> <a href="configuration#conditionals">conditionals</a> </li>
Expand Down
14 changes: 2 additions & 12 deletions lib/logstash/outputs/elasticsearch/elasticsearch-template.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,7 @@
{
"template" : "logstash-*",
"settings" : {
"index.refresh_interval" : "5s",
"analysis" : {
"analyzer" : {
"default" : {
"type" : "standard",
"stopwords" : "_none_"
}
}
}
"index.refresh_interval" : "5s"
},
"mappings" : {
"_default_" : {
Expand All @@ -19,9 +11,8 @@
"match" : "*",
"match_mapping_type" : "string",
"mapping" : {
"type" : "multi_field",
"type" : "string", "index" : "analyzed", "omit_norms" : true,
"fields" : {
"{name}" : {"type": "string", "index" : "analyzed", "omit_norms" : true },
"raw" : {"type": "string", "index" : "not_analyzed", "ignore_above" : 256}
}
}
Expand All @@ -41,4 +32,3 @@
}
}
}

0 comments on commit 199f8d3

Please sign in to comment.