I have created a Web Monitor to log in to ZoneMinder's XML skin and look for the required text <RUNNING>1</RUNNING> . I would like to create a trigger to alert me when either <RUNNING>0</RUNNING> is returned or if I understand the web monitor correctly when the step that <RUNNING>1</RUNNING> is required fails. How can I do this? I see that there are Items automatically created for web monitoring:
.test.in[Scenario,Step,bps]
.test.time[Scenario,Step]
.test.rspcode[Scenario,Step]
But not one for Required...
Also, just in case anyone is having trouble with POST I used this:
Variables:
{user}=username
{password}=password
Post:
username={user}&password={password}&action=login
.test.in[Scenario,Step,bps]
.test.time[Scenario,Step]
.test.rspcode[Scenario,Step]
But not one for Required...

Also, just in case anyone is having trouble with POST I used this:
Variables:
{user}=username
{password}=password
Post:
username={user}&password={password}&action=login
Comment