I tried to create trigger using the following command of Apache IoTDB:
CREATE TRIGGER `alert-listener-sgld1s1` AFTER INSERT ON root.sgl.d1.s1 AS 'org.apache.iotdb.db.engine.trigger.example.AlertListener' WITH ( 'lo' = '0', 'hi'= '100.0').
However I got an error said that
java.lang.ClassNotFoundException: org.apache.iotdb.db.engine.trigger.example.AlertListener.
I wonder what did this jar package ClusterAlertingExample.jar do? Should I write the trigger processing class in the ClusterAlertingExample.jar package myself?