mirror of
https://repository.entgra.net/community/device-mgt-plugins.git
synced 2025-09-16 23:42:15 +00:00
Merge pull request #702 from Savidude/master
Removing default policy in Virtual Firealarm advanced agent
This commit is contained in:
commit
834c3e30b9
@ -120,17 +120,6 @@ public class AgentConstants {
|
|||||||
public static final String XMPP_PROTOCOL = "XMPP";
|
public static final String XMPP_PROTOCOL = "XMPP";
|
||||||
|
|
||||||
public static final String CEP_FILE_NAME = "cep_query.txt";
|
public static final String CEP_FILE_NAME = "cep_query.txt";
|
||||||
public static final String CEP_QUERY = "define stream fireAlarmEventStream (deviceID string, temp int);\n" +
|
|
||||||
"from fireAlarmEventStream#window.time(30 sec)\n" +
|
|
||||||
"select deviceID, max(temp) as maxValue\n" +
|
|
||||||
"group by deviceID\n" +
|
|
||||||
"insert into analyzeStream for expired-events;\n" +
|
|
||||||
"from analyzeStream[maxValue > 50]\n" +
|
|
||||||
"select maxValue\n" +
|
|
||||||
"insert into bulbOnStream;\n" +
|
|
||||||
"from fireAlarmEventStream[temp < 50]\n" +
|
|
||||||
"select deviceID, temp\n" +
|
|
||||||
"insert into bulbOffStream;";
|
|
||||||
|
|
||||||
|
|
||||||
public static final String XMPP_SERVER_NAME_PROPERTY = "xmpp-server-name";
|
public static final String XMPP_SERVER_NAME_PROPERTY = "xmpp-server-name";
|
||||||
|
|||||||
@ -70,7 +70,7 @@ public class SidhdhiQuery implements Runnable {
|
|||||||
File f = new File(sidhdhiQueryPath);
|
File f = new File(sidhdhiQueryPath);
|
||||||
|
|
||||||
if (!f.exists()) {
|
if (!f.exists()) {
|
||||||
AgentUtilOperations.writeToFile(AgentConstants.CEP_QUERY, sidhdhiQueryPath);
|
AgentUtilOperations.writeToFile("", sidhdhiQueryPath);
|
||||||
}
|
}
|
||||||
|
|
||||||
StartExecutionPlan startExecutionPlan = new StartExecutionPlan().invoke();
|
StartExecutionPlan startExecutionPlan = new StartExecutionPlan().invoke();
|
||||||
|
|||||||
@ -1,11 +0,0 @@
|
|||||||
define stream fireAlarmEventStream (deviceID string, temp int);
|
|
||||||
from fireAlarmEventStream#window.time(10 sec)
|
|
||||||
select deviceID, max(temp) as maxValue
|
|
||||||
group by deviceID
|
|
||||||
insert into analyzeStream for expired-events;
|
|
||||||
from analyzeStream[maxValue < 60]
|
|
||||||
select maxValue
|
|
||||||
insert into bulbOnStream;
|
|
||||||
from fireAlarmEventStream[temp > 60]
|
|
||||||
select deviceID, temp
|
|
||||||
insert into bulbOffStream;
|
|
||||||
Loading…
Reference in New Issue
Block a user