-
Notifications
You must be signed in to change notification settings - Fork 87
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1953 from toabctl/monasca-cleanup
Replace monasca-installer with chef/crowbar
- Loading branch information
Showing
71 changed files
with
5,001 additions
and
973 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
63 changes: 63 additions & 0 deletions
63
chef/cookbooks/monasca/files/default/elasticsearch-monasca-logstash-template.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
{ | ||
"order" : 0, | ||
"template" : "*", | ||
"settings" : { | ||
"index.refresh_interval" : "5s", | ||
"index" : { | ||
"analysis": { | ||
"analyzer" : { | ||
"no_token" : { | ||
"type" : "custom", | ||
"tokenizer" : "keyword", | ||
"filter" : "lowercase" | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"mappings" : { | ||
"_default_" : { | ||
"dynamic_templates" : [ { | ||
"message_field" : { | ||
"mapping" : { | ||
"index" : "analyzed", | ||
"omit_norms" : true, | ||
"type" : "string" | ||
}, | ||
"match_mapping_type" : "string", | ||
"match" : "message" | ||
} | ||
}, { | ||
"string_fields" : { | ||
"mapping" : { | ||
"analyzer" : "no_token", | ||
"omit_norms" : true, | ||
"type" : "string" | ||
}, | ||
"match_mapping_type" : "string", | ||
"match" : "*" | ||
} | ||
} ], | ||
"properties" : { | ||
"geoip" : { | ||
"dynamic" : true, | ||
"properties" : { | ||
"location" : { | ||
"type" : "geo_point" | ||
} | ||
}, | ||
"type" : "object" | ||
}, | ||
"@version" : { | ||
"index" : "not_analyzed", | ||
"type" : "string" | ||
} | ||
}, | ||
"_all" : { | ||
"enabled" : true, | ||
"omit_norms" : true | ||
} | ||
} | ||
}, | ||
"aliases" : { } | ||
} |
Oops, something went wrong.