File: control

package info (click to toggle)
erlang-goldrush 0.2.0-9
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 284 kB
  • sloc: erlang: 2,561; makefile: 36
file content (44 lines) | stat: -rw-r--r-- 1,800 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
Source: erlang-goldrush
Maintainer: Ejabberd Packaging Team <ejabberd@packages.debian.org>
Uploaders: Philipp Huebner <debalance@debian.org>
Section: libs
Priority: optional
Rules-Requires-Root: no
Build-Depends: debhelper-compat (= 13),
               dh-rebar (>= 0.0.6),
               erlang-base,
               erlang-crypto,
               erlang-syntax-tools,
               erlang-eunit
Standards-Version: 4.6.2
Vcs-Browser: https://salsa.debian.org/ejabberd-packaging-team/erlang-goldrush
Vcs-Git: https://salsa.debian.org/ejabberd-packaging-team/erlang-goldrush.git
Homepage: https://github.com/DeadZen/goldrush

Package: erlang-goldrush
Architecture: any
Depends: ${shlibs:Depends},
         ${misc:Depends},
         erlang-base, ${erlang-abi:Depends},
         ${erlang:Depends}
Multi-Arch: allowed
Description: small Erlang app that provides fast event stream processing
 Goldrush is a small Erlang app that provides fast event stream processing
 .
 Features:
  * Event processing compiled to a query module
   - per module protected event processing statistics
   - query module logic can be combined for any/all filters
   - query module logic can be reduced to efficiently match event processing
  * Complex event processing logic
   - match input events with greater than (gt) logic
   - match input events with less than (lt) logic
   - match input events with equal to (eq) logic
   - match input events with wildcard (wc) logic
   - match input events with notfound (nf) logic
   - match no input events (null blackhole) logic
   - match all input events (null passthrough) logic
  * Handle output events
   - Once a query has been composed the output action can be overridden
     with an erlang function. The function will be applied to each
     output event from the query.