This repository has been archived by the owner on Nov 15, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
85 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
#!/bin/bash -e | ||
|
||
mkdir -p $OPENSHIFT_ELASTICSEARCH_DIR/run $OPENSHIFT_DATA_DIR/elasticsearch | ||
mkdir -p $OPENSHIFT_ELASTICSEARCH_DIR/run $OPENSHIFT_DATA_DIR/{elasticsearch,elasticsearch-plugins} | ||
|
||
touch $OPENSHIFT_ELASTICSEARCH_DIR/env/OPENSHIFT_ELASTICSEARCH_CLUSTER |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
## | ||
## ElasticSearch plugins to install, one per line. | ||
## Edit this file, commit and push. All plugins will be | ||
## installed inside all gears. | ||
## | ||
## To use a specific URL to download plugin code from, use: | ||
## [PLUGIN_NAME]=[URL] | ||
## Ex: | ||
## myplugin=https://mysite.com/elasticsearch/my-awesome-plugin.zip | ||
## | ||
|
||
## Description: | ||
## ElasticSearch-head is a web front end for browsing and | ||
## interacting with an Elastic Search cluster. | ||
## | ||
## URL: | ||
## http://mobz.github.io/elasticsearch-head | ||
|
||
## Uncomment line below to install this plugin | ||
#mobz/elasticsearch-head | ||
|
||
## Description: | ||
## Paramedic is a simple yet sexy tool to monitor and inspect | ||
## ElasticSearch clusters. It displays real-time statistics and | ||
## information about your nodes and indices, as well as shard | ||
## allocation within the cluster. | ||
## | ||
## URL: | ||
## https://github.com/karmi/elasticsearch-paramedic | ||
|
||
## Uncomment line below to install this plugin | ||
#karmi/elasticsearch-paramedic | ||
|
||
## Description: | ||
## Site plugin for Elasticsearch to help understand and debug queries. | ||
## | ||
## URL: | ||
## https://github.com/polyfractal/elasticsearch-inquisitor | ||
|
||
## Uncomment line below to install this plugin | ||
#polyfractal/elasticsearch-inquisitor | ||
|
||
## Description: | ||
## SegmentSpy is a tool to watch the segments in your indices. | ||
## Segment graphs update in real-time, allowing you to watch as | ||
## ElasticSearch (Lucene) merges your segments | ||
## | ||
## URL: | ||
## https://github.com/polyfractal/elasticsearch-segmentspy | ||
|
||
## Uncomment line below to install this plugin | ||
#polyfractal/elasticsearch-segmentspy |