├── .editorconfig ├── .esvmrc ├── .gitignore ├── .jscsrc ├── .jshintrc ├── .npmignore ├── .travis.yml ├── CHANGELOG.md ├── Gruntfile.js ├── LICENSE.md ├── README.md ├── bower.json ├── docs ├── _descriptions │ ├── _empty_.asciidoc │ ├── watcher.ackWatch.asciidoc │ ├── watcher.deleteWatch.asciidoc │ ├── watcher.executeWatch.asciidoc │ ├── watcher.getWatch.asciidoc │ ├── watcher.info.asciidoc │ ├── watcher.putWatch.asciidoc │ ├── watcher.restart.asciidoc │ ├── watcher.start.asciidoc │ ├── watcher.stats.asciidoc │ └── watcher.stop.asciidoc ├── _examples │ └── _empty_.asciidoc ├── api.asciidoc ├── getting-started.asciidoc ├── index.asciidoc └── intro.asciidoc ├── elasticsearch-watcher.js ├── generate ├── Method.js ├── ParamList.js ├── index.js ├── templateHelpers.js └── templates │ ├── apiFile.tmpl │ ├── apiMethod.tmpl │ ├── docFile.tmpl │ ├── docMethod.tmpl │ └── docParams.tmpl ├── package.json └── test ├── Catcher.js ├── YamlDoc.js ├── YamlFile.js ├── client.js └── read.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-watcher-js/HEAD/.editorconfig -------------------------------------------------------------------------------- /.esvmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-watcher-js/HEAD/.esvmrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-watcher-js/HEAD/.gitignore -------------------------------------------------------------------------------- /.jscsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-watcher-js/HEAD/.jscsrc -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-watcher-js/HEAD/.jshintrc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | * 2 | !docs/*.asciidoc 3 | !elasticsearch-watcher.js 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | script: 'esvm & npm test' 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # elasticsearch-watcher changelog -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-watcher-js/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-watcher-js/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-watcher-js/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-watcher-js/HEAD/bower.json -------------------------------------------------------------------------------- /docs/_descriptions/_empty_.asciidoc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/_descriptions/watcher.ackWatch.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-watcher-js/HEAD/docs/_descriptions/watcher.ackWatch.asciidoc -------------------------------------------------------------------------------- /docs/_descriptions/watcher.deleteWatch.asciidoc: -------------------------------------------------------------------------------- 1 | Delete a specific watch 2 | -------------------------------------------------------------------------------- /docs/_descriptions/watcher.executeWatch.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-watcher-js/HEAD/docs/_descriptions/watcher.executeWatch.asciidoc -------------------------------------------------------------------------------- /docs/_descriptions/watcher.getWatch.asciidoc: -------------------------------------------------------------------------------- 1 | Get a specific watch 2 | -------------------------------------------------------------------------------- /docs/_descriptions/watcher.info.asciidoc: -------------------------------------------------------------------------------- 1 | Return information about the installed Watcher plugin 2 | -------------------------------------------------------------------------------- /docs/_descriptions/watcher.putWatch.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-watcher-js/HEAD/docs/_descriptions/watcher.putWatch.asciidoc -------------------------------------------------------------------------------- /docs/_descriptions/watcher.restart.asciidoc: -------------------------------------------------------------------------------- 1 | Restart the watcher service 2 | -------------------------------------------------------------------------------- /docs/_descriptions/watcher.start.asciidoc: -------------------------------------------------------------------------------- 1 | Start the watcher service 2 | -------------------------------------------------------------------------------- /docs/_descriptions/watcher.stats.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-watcher-js/HEAD/docs/_descriptions/watcher.stats.asciidoc -------------------------------------------------------------------------------- /docs/_descriptions/watcher.stop.asciidoc: -------------------------------------------------------------------------------- 1 | Stop the watcher service 2 | -------------------------------------------------------------------------------- /docs/_examples/_empty_.asciidoc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/api.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-watcher-js/HEAD/docs/api.asciidoc -------------------------------------------------------------------------------- /docs/getting-started.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-watcher-js/HEAD/docs/getting-started.asciidoc -------------------------------------------------------------------------------- /docs/index.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-watcher-js/HEAD/docs/index.asciidoc -------------------------------------------------------------------------------- /docs/intro.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-watcher-js/HEAD/docs/intro.asciidoc -------------------------------------------------------------------------------- /elasticsearch-watcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-watcher-js/HEAD/elasticsearch-watcher.js -------------------------------------------------------------------------------- /generate/Method.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-watcher-js/HEAD/generate/Method.js -------------------------------------------------------------------------------- /generate/ParamList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-watcher-js/HEAD/generate/ParamList.js -------------------------------------------------------------------------------- /generate/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-watcher-js/HEAD/generate/index.js -------------------------------------------------------------------------------- /generate/templateHelpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-watcher-js/HEAD/generate/templateHelpers.js -------------------------------------------------------------------------------- /generate/templates/apiFile.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-watcher-js/HEAD/generate/templates/apiFile.tmpl -------------------------------------------------------------------------------- /generate/templates/apiMethod.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-watcher-js/HEAD/generate/templates/apiMethod.tmpl -------------------------------------------------------------------------------- /generate/templates/docFile.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-watcher-js/HEAD/generate/templates/docFile.tmpl -------------------------------------------------------------------------------- /generate/templates/docMethod.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-watcher-js/HEAD/generate/templates/docMethod.tmpl -------------------------------------------------------------------------------- /generate/templates/docParams.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-watcher-js/HEAD/generate/templates/docParams.tmpl -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-watcher-js/HEAD/package.json -------------------------------------------------------------------------------- /test/Catcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-watcher-js/HEAD/test/Catcher.js -------------------------------------------------------------------------------- /test/YamlDoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-watcher-js/HEAD/test/YamlDoc.js -------------------------------------------------------------------------------- /test/YamlFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-watcher-js/HEAD/test/YamlFile.js -------------------------------------------------------------------------------- /test/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-watcher-js/HEAD/test/client.js -------------------------------------------------------------------------------- /test/read.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-watcher-js/HEAD/test/read.js --------------------------------------------------------------------------------