Event Hooks: Difference between revisions
No edit summary |
No edit summary |
||
| Line 20: | Line 20: | ||
For additional information, please refer to the Javadoc for [http://obsidianscheduler.com/obsidianapi/com/carfey/ops/event/dispatch/EventHook.html EventHook] and the corresponding source code in your Obsidian installation in the file <code>obsidian-builtin-job-src.jar</code>. | For additional information, please refer to the Javadoc for [http://obsidianscheduler.com/obsidianapi/com/carfey/ops/event/dispatch/EventHook.html EventHook] and the corresponding source code in your Obsidian installation in the file <code>obsidian-builtin-job-src.jar</code>. | ||
= Registering your | = Registering your Event Hook = | ||
After creating an instance of a class that implements <code>EventHook</code>, you simply need to register it with Obsidian. The example below shows our reference implementation which posts notifications to a Slack channel by using incoming web hooks. | After creating an instance of a class that implements <code>EventHook</code>, you simply need to register it with Obsidian. The example below shows our reference implementation which posts notifications to a Slack channel by using incoming web hooks. | ||
| Line 30: | Line 30: | ||
For additional information, please refer to the Javadoc for [http://obsidianscheduler.com/obsidianapi/com/carfey/ops/event/dispatch/EventHooks.html EventHooks] and the corresponding source code in your Obsidian installation in the file <code>obsidian-builtin-job-src.jar</code>. | For additional information, please refer to the Javadoc for [http://obsidianscheduler.com/obsidianapi/com/carfey/ops/event/dispatch/EventHooks.html EventHooks] and the corresponding source code in your Obsidian installation in the file <code>obsidian-builtin-job-src.jar</code>. | ||
= Slack Notifier = | |||
Obsidian 4.5 introduced a slack notifier that can be easily set up by configuring the configuration property: | |||
<pre> | |||
com.carfey.obsidian.slack.webhookUrl=https://hooks.slack.com/services/XXXXXXX/YYYYYYYY/ZZZZZZZZZZ | |||
</pre> | |||
If this property is set, the [http://obsidianscheduler.com/obsidianapi/com/carfey/ops/event/dispatch/SlackEventHook.html Slack notifier] will automatically be registered with Obsidian on startup. | |||
See [[Advanced_Configuration#Miscellaneous_Properties|Advanced Configuration]] for a full configuration reference for the slack notifier. | |||
In addition to the property-based intitalization, you may create your own instance of [http://obsidianscheduler.com/obsidianapi/com/carfey/ops/event/dispatch/SlackEventHook.html SlackEventHook] and register it as described [[#Registering your Event Hook|above]]. You can choose to create a subclass to customize its behaviour. | |||
Revision as of 17:49, 28 February 2018
Event hooks allow you to extend Obsidian's event notifications to support things like instant messaging, customized logging, etc. This feature was introduced in version 4.5.0.
EventHook Interface
Note: If you need to set up a development environment to create Obsidian event hooks, see the Classpath section.
Implementing custom notifications in Obsidian is as simple as implementing a single interface and calling a method to register it with the scheduler.
The interface you need to implement is the following.
public interface EventHook {
public abstract void dispatch(Event event) throws Exception;
}
The dispatch() method gets called with every logging/notification event Obsidian encounters. The implementor is responsible for filtering out appropriate events to respond to, and what occurs when an applicable event is encountered. As an example, we've provided a reference implementation of a Slack notifier, and its source code is available in the Obsidian distribution.
For additional information, please refer to the Javadoc for EventHook and the corresponding source code in your Obsidian installation in the file obsidian-builtin-job-src.jar.
Registering your Event Hook
After creating an instance of a class that implements EventHook, you simply need to register it with Obsidian. The example below shows our reference implementation which posts notifications to a Slack channel by using incoming web hooks.
EventHook customNotifier = new SlackEventHook("Obsidian Scheduler", "https://hooks.slack.com/services/XXXXXXX/YYYYYYYY/ZZZZZZZZZZ", SlackEventHook.DEFAULT_LEVELS, SlackEventHook.Default_CATEGORIES);
eventHooks.register(customNotifier); // we will now get notifications in slack for any FATAL, ERROR or WARN events
For additional information, please refer to the Javadoc for EventHooks and the corresponding source code in your Obsidian installation in the file obsidian-builtin-job-src.jar.
Slack Notifier
Obsidian 4.5 introduced a slack notifier that can be easily set up by configuring the configuration property:
com.carfey.obsidian.slack.webhookUrl=https://hooks.slack.com/services/XXXXXXX/YYYYYYYY/ZZZZZZZZZZ
If this property is set, the Slack notifier will automatically be registered with Obsidian on startup.
See Advanced Configuration for a full configuration reference for the slack notifier.
In addition to the property-based intitalization, you may create your own instance of SlackEventHook and register it as described above. You can choose to create a subclass to customize its behaviour.