We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 808030b + f1c5069 commit c4bff24Copy full SHA for c4bff24
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@bitsensor/elastalert",
3
- "version": "2.0.0",
+ "version": "2.0.1",
4
"description": "A server that runs ElastAlert and exposes REST API's for manipulating rules and alerts.",
5
"license": "MIT",
6
"main": "index.js",
src/common/config/schema.js
@@ -7,6 +7,7 @@ const schema = Joi.object().keys({
7
'es_port': Joi.number().default(9200),
8
'writeback_index': Joi.string().default('elastalert_status'),
9
'port': Joi.number().default(3030),
10
+ 'wsport': Joi.number().default(3333),
11
'elastalertPath': Joi.string().default('/opt/elastalert'),
12
'rulesPath': Joi.object().keys({
13
'relative': Joi.boolean().default(true),
0 commit comments