├── .dockerignore ├── .gitignore ├── README.md ├── docker-compose.yml ├── elasticsearch └── logging.yml ├── scripts ├── disable-disk-treshold.sh ├── mongo-connector.sh ├── query.sh ├── setup.sh └── wait-until-started.sh └── transporter ├── config.yaml ├── mongo-es.js ├── run.sh └── transformers └── passthrough_and_log.js /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soldotno/elastic-mongo/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | datadir?/* 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soldotno/elastic-mongo/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soldotno/elastic-mongo/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /elasticsearch/logging.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soldotno/elastic-mongo/HEAD/elasticsearch/logging.yml -------------------------------------------------------------------------------- /scripts/disable-disk-treshold.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soldotno/elastic-mongo/HEAD/scripts/disable-disk-treshold.sh -------------------------------------------------------------------------------- /scripts/mongo-connector.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soldotno/elastic-mongo/HEAD/scripts/mongo-connector.sh -------------------------------------------------------------------------------- /scripts/query.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soldotno/elastic-mongo/HEAD/scripts/query.sh -------------------------------------------------------------------------------- /scripts/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soldotno/elastic-mongo/HEAD/scripts/setup.sh -------------------------------------------------------------------------------- /scripts/wait-until-started.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soldotno/elastic-mongo/HEAD/scripts/wait-until-started.sh -------------------------------------------------------------------------------- /transporter/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soldotno/elastic-mongo/HEAD/transporter/config.yaml -------------------------------------------------------------------------------- /transporter/mongo-es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soldotno/elastic-mongo/HEAD/transporter/mongo-es.js -------------------------------------------------------------------------------- /transporter/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soldotno/elastic-mongo/HEAD/transporter/run.sh -------------------------------------------------------------------------------- /transporter/transformers/passthrough_and_log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soldotno/elastic-mongo/HEAD/transporter/transformers/passthrough_and_log.js --------------------------------------------------------------------------------