Forum
Please or Register to create posts and topics.

IMPLEMENTED: Audio alarm for the triggering

I want to  output the audio alarm for the triggering signal, or could you provide the Block with alarm function?

quite easy: Alert Block is included for free

Uploaded files:
  • Alert.png
Sofon has reacted to this post.
Sofon

It is very helpful! Thank you for your reply soon. Could it be support alert through the email and SNMP ?

 

You can configure it to execute a command or perform a HTTP request, so you can make it do whatever you want using those mechanisms. We are not going to implement email or SNMP support directly into the block.

Sofon has reacted to this post.
Sofon

Could you please help to explain over Alert Http at the Alert Block? Can you give me a sample how to fill in this content?

The simplest form is to use ""Alert HTTP"="get" and define the URL that should be accessed as "Alert URL". Optionally you can specify a query string in "Alert HTTP args" or additional headers in "Alert HTTP Header" if for some reason required by your HTTP server.

Alternatively you can use the "post body" or "put" methods to send a post or put request with the specified "Alert Body" as content.

The methods above will however not include any details about the alert itself except what was manually specified. If you need the actual sample data that triggered the alert you need to use the "post data" method, that will send a POST request with the sample encoded as JSON in the request body ( "Alert Body" is ignored in that case).

Obviously you'll need to setup a HTTP server to handle the configured requests in some way (to do whatever you want), and then setup the block according to that. Providing a concrete example without knowing anything about the receiving server would be of no use.

Sofon has reacted to this post.
Sofon