uboness
af7cf03a1c
removed compound throttler in favour of an alert throttler
...
We don't really need a generic compound throttler. Instead we now have an `AlertThrottler` that can be configured with optional `AckThrottler` and `PeriodThrottler`.
The logic of what throttler is applied first has therefore moved from the `Alert` to the `AlertThrottler` (back to its natural place)
Original commit: elastic/x-pack-elasticsearch@b81e467c97
2015-02-05 12:08:50 +01:00
uboness
7d9d0aae05
Refactoring of the codebase
...
Original commit: elastic/x-pack-elasticsearch@08872f71ea
2015-02-05 10:00:48 +01:00
uboness
79ee2ed62e
[cleanup] Refactoring of the code base
...
- Renamed `AlertingModule` to `AlertsModule`
- Started modularizing the code base.. each module has its own guice module and `AlertsModule` spawn all the sub-modules
- Renamed `*Helper` classes to `*Utils` for consistency sake and moved all utilities to `support` package
- Moved `AlertsPlugin` to the base package (no need for `plugin` package... it just creates noise)
- Moved `State` to be inner enum within `AlertsService` (that's where it belongs)
- Moved all the rest actions to `rest.action` package
Original commit: elastic/x-pack-elasticsearch@4ce9bf8dcd
2015-02-03 14:55:28 +01:00
uboness
4b38006f64
Changed the alerts client to wrap es client
...
Instead of having another client interface, the alerts client should be a wrapper around the standard es client. This will make sure that whatever logic that is applied on these std clients will also be applied to any requests/actions that are executed in the alerts client.
Using the es client introduces a cyclic dependency for all those services that use the es client and that are also injected into the transport actions. For this reason, instead of using the es client and script service directory, we're using proxies. The proxies are initialized lazily be a new `InitializationService`.
Also introduced the `AlertsClientModule` and `AlertsTransportModule`
Closes elastic/elasticsearch#56
Original commit: elastic/x-pack-elasticsearch@58990a7c85
2015-02-03 11:54:08 +01:00
Brian Murphy
8c6aad11ed
Add username to SMTP settings.
...
This partially addresses elastic/elasticsearch#69 until I can make the changes suggested in the code review.
Original commit: elastic/x-pack-elasticsearch@0f1433d9b4
2015-01-30 11:31:15 -05:00
Martijn van Groningen
27b6aa50f7
Add version and build information to the stats api
...
Also set the current maven version to -SNAPSHOT
Original commit: elastic/x-pack-elasticsearch@964c740373
2015-01-30 17:08:19 +01:00
Martijn van Groningen
f5605db41b
Share all libraries and noop-ed quartz logging
...
Original commit: elastic/x-pack-elasticsearch@88228b7f46
2015-01-30 17:02:28 +01:00
Martijn van Groningen
d68cad9b72
Renamed AlertActionEntry to AlertHistory.
...
Original commit: elastic/x-pack-elasticsearch@cc48a27a3c
2015-01-29 21:08:34 +01:00
Martijn van Groningen
57e65fccf1
Rename *Manager to *Service
...
Original commit: elastic/x-pack-elasticsearch@f37d301660
2015-01-29 20:53:51 +01:00
Martijn van Groningen
61af10f7c0
Added jdoc explanation why the execution of fired alerts is split it into two operations.
...
Original commit: elastic/x-pack-elasticsearch@03c8645e9d
2015-01-29 17:00:28 +01:00
Martijn van Groningen
11864df421
Fix thread pool name
...
Original commit: elastic/x-pack-elasticsearch@0ed6327768
2015-01-29 16:20:11 +01:00
Martijn van Groningen
2892154ace
Merge pull request elastic/elasticsearch#64 from joehillen/fix-email-port
...
Fix email port setting
Original commit: elastic/x-pack-elasticsearch@ee669b55d8
2015-01-16 21:24:43 +01:00
Brian Murphy
c81a37a2ee
Fix the email template test to be a lightweight unit test case and not start any unneeded services.
...
Original commit: elastic/x-pack-elasticsearch@93fc61d61a
2015-01-15 16:54:48 -05:00
Brian Murphy
cef0976a6c
Change the version to 1.0.0-beta2i
...
Original commit: elastic/x-pack-elasticsearch@aace18a423
2015-01-15 16:54:25 -05:00
Joe Hillenbrand
5c904dfafa
Fix email port setting
...
The setting was mistyped as 'smpt' when it should have been 'smtp', but
it is better to change it to 'email' to be consistent with the other settings.
Original commit: elastic/x-pack-elasticsearch@0e610d89b5
2015-01-15 12:55:30 -08:00
Brian Murphy
a458e2df1d
Register the ack handler again.
...
Original commit: elastic/x-pack-elasticsearch@b229c52f78
2015-01-15 10:31:59 -05:00
Brian Murphy
cdd222aad5
Add email templating.
...
This commit adds support for email templating to alerting.
Original commit: elastic/x-pack-elasticsearch@6280801ce5
2015-01-15 09:34:17 -05:00
Brian Murphy
f90d600a22
Add webhook action
...
This action can be added to an alert as :
"webhook" : {
"url" : "http://localhost:8080/alert/{{alert_name}} ",
"method" : "GET"
}
Original commit: elastic/x-pack-elasticsearch@34e04229ab
2015-01-15 09:31:23 -05:00
Martijn van Groningen
30506ef41d
Only primary shards are now required to be available during alerting initialization.
...
Original commit: elastic/x-pack-elasticsearch@4ef5fd87dc
2015-01-15 10:43:07 +01:00
Martijn van Groningen
fc5cbd5d08
Fixed typo
...
Original commit: elastic/x-pack-elasticsearch@a549bd9e18
2015-01-15 10:15:49 +01:00
Martijn van Groningen
9f014a9bf9
slightly improved logging.
...
Original commit: elastic/x-pack-elasticsearch@7a131bc4d8
2014-12-23 16:41:16 +01:00
Martijn van Groningen
df7fc714e7
Ensure that the refresh has ran on all shards.
...
Original commit: elastic/x-pack-elasticsearch@6214514956
2014-12-23 16:30:04 +01:00
Martijn van Groningen
a7e85df649
Move the get alert api over to be a master node api and that it fetches the alert from the in memory alert store instead via core get api from an index.
...
Original commit: elastic/x-pack-elasticsearch@6bf471bf74
2014-12-05 19:59:58 +01:00
Martijn van Groningen
05848603d8
Added missing rest handler
...
Original commit: elastic/x-pack-elasticsearch@749dfc61f5
2014-12-05 19:24:11 +01:00
Martijn van Groningen
b039f8bbdb
Changed to use indexBlockedException instead of indicesBlockedException
...
Original commit: elastic/x-pack-elasticsearch@33f581ddd2
2014-12-05 19:13:31 +01:00
Martijn van Groningen
bbaa122d7e
Removed unused field.
...
Original commit: elastic/x-pack-elasticsearch@b6b0d926ba
2014-12-05 19:11:24 +01:00
Martijn van Groningen
45e5c13369
Disallow dynamic mapping
...
Added config mapping
Original commit: elastic/x-pack-elasticsearch@f3de2c17bd
2014-12-05 17:03:26 +01:00
Brian Murphy
c97e083a59
Move the saving of configs to the manager.
...
Original commit: elastic/x-pack-elasticsearch@aa8372d34e
2014-12-05 15:55:19 +00:00
Martijn van Groningen
ac45a4fe99
Changes the configuration manager to rely more on alert store for the .alerts index / templated to be loaded. This simplified to loading logic in the configuration manager.
...
Original commit: elastic/x-pack-elasticsearch@ccd7a23243
2014-12-05 16:42:58 +01:00
Brian Murphy
780c89ec23
Move settings checking to the creation of SMTP alert actions.
...
Original commit: elastic/x-pack-elasticsearch@30da14cb9e
2014-12-05 15:09:07 +00:00
Martijn van Groningen
203cf5c024
Remove redundant config manager start checking
...
Original commit: elastic/x-pack-elasticsearch@5369765398
2014-12-05 16:02:28 +01:00
Martijn van Groningen
984d7d615a
removed log statements
...
Original commit: elastic/x-pack-elasticsearch@c4b7b16cd4
2014-12-05 15:36:18 +01:00
Martijn van Groningen
aeacbe44ca
Removed redundant if statement
...
Original commit: elastic/x-pack-elasticsearch@2de43dc7d5
2014-12-05 15:34:44 +01:00
Martijn van Groningen
1258a4c327
Renamed ConfigManager#isReady() to ConfigManager#start()
...
Add ConfigManager#stop()
Simplified config loading
smpt alert action settings are now also updated
Original commit: elastic/x-pack-elasticsearch@acb180f88c
2014-12-05 15:14:24 +01:00
Brian Murphy
920f7ea2a9
More changes for configuration manager and email action renaming.
...
Original commit: elastic/x-pack-elasticsearch@1c5087e79a
2014-12-05 12:07:31 +00:00
Brian Murphy
d8b751f6ed
Change to support name change of email alert action.
...
Original commit: elastic/x-pack-elasticsearch@d8bba3194b
2014-12-05 12:07:31 +00:00
Brian Murphy
d4f8bf0d2c
Fix test to pass in a dummy cluster state when readying the ConfigManager.
...
Original commit: elastic/x-pack-elasticsearch@e085844f9f
2014-12-05 12:07:31 +00:00
Brian Murphy
1f49c9199d
Changes after review.
...
Original commit: elastic/x-pack-elasticsearch@a5fac88f19
2014-12-05 12:07:31 +00:00
Brian Murphy
d70164de4d
Rename EmailAlertAction
...
Original commit: elastic/x-pack-elasticsearch@35e819cdf2
2014-12-05 12:06:42 +00:00
Brian Murphy
6791841f42
Changes after review.
...
Original commit: elastic/x-pack-elasticsearch@0a9055b918
2014-12-05 12:05:57 +00:00
Brian Murphy
31173507a5
Add actions and listeners for Configuration.
...
Add transport actions for configuration.
Add Listener so that components can listen for config changes.
Original commit: elastic/x-pack-elasticsearch@bab02770d9
2014-12-05 12:05:57 +00:00
Brian Murphy
d3ec7f40ba
Add tests for configuration manager.
...
Original commit: elastic/x-pack-elasticsearch@9c284fc4c6
2014-12-05 12:05:57 +00:00
Brian Murphy
8fa42a581f
Configuration : Add ability to configure alerting by creating .alerts/config/<name> documents in the index.
...
This commit adds the ConfigurationManager which the components use to load configuration from the index.
The configuration manager exposes an isReady method which components should not start until it is returns true.
Original commit: elastic/x-pack-elasticsearch@96a2f9f44f
2014-12-05 12:05:57 +00:00
Martijn van Groningen
6fd5e5202e
change readme file to asciidoc
...
Original commit: elastic/x-pack-elasticsearch@91b9c87fa6
2014-12-04 17:04:35 +01:00
Martijn van Groningen
a4f0077a2a
Fix tests differently
...
Original commit: elastic/x-pack-elasticsearch@00ec42c29b
2014-12-04 16:55:32 +01:00
Brian Murphy
cc9fac0f93
TEST: Fix AbstractAlertingTests
...
Original commit: elastic/x-pack-elasticsearch@1611f84a41
2014-12-04 15:40:18 +00:00
Brian Murphy
3f4d469d4a
FIX: Fixes after merge fail.
...
Original commit: elastic/x-pack-elasticsearch@6bab2d2640
2014-12-04 15:10:18 +00:00
Brian Murphy
4e825e7fac
Merge branch 'master' of https://github.com/elasticsearch/elasticsearch-alerts
...
Original commit: elastic/x-pack-elasticsearch@0707d65b2c
2014-12-04 14:55:26 +00:00
Brian Murphy
f175b298b4
Add payload search test
...
Original commit: elastic/x-pack-elasticsearch@9fba7e97d1
2014-12-04 14:55:08 +00:00
Brian Murphy
b68d7e5554
Changes for payload merge.
...
Original commit: elastic/x-pack-elasticsearch@7989471378
2014-12-04 14:54:20 +00:00