b441e91f84
Fix bug which caused pending actions to be run multiple times when pending time finished Fix bug which caused 1. past pending actions to rerun on exit 2. maximum one pending action per pattern/action couple to run on exit
63 lines
1.5 KiB
Plaintext
63 lines
1.5 KiB
Plaintext
{
|
|
patterns: {
|
|
num: {
|
|
regex: '[0-9]+',
|
|
},
|
|
},
|
|
|
|
start: [
|
|
['err'],
|
|
['sleep', '1'],
|
|
],
|
|
|
|
stop: [
|
|
['sleep', '1'],
|
|
// ['false'],
|
|
['true'],
|
|
],
|
|
|
|
streams: {
|
|
tailDown1: {
|
|
cmd: ['sh', '-c', "echo 1 2 3 4 5 5 | tr ' ' '\n' | while read i; do sleep 1; echo found $(($i % 10)); done"],
|
|
// cmd: ['sh', '-c', "echo 1 2 3 4 5 1 2 3 4 5 1 2 3 4 1 2 3 4 1 2 3 4 1 2 3 4 1 2 3 4 1 2 3 4 1 2 3 4 1 2 3 4 1 2 3 4 1 2 3 4 1 2 3 4 1 2 3 4 1 2 3 4 1 2 3 4 1 2 3 4 1 2 3 4 1 2 3 4 1 2 3 4 1 2 3 4 1 2 3 4 1 2 3 4 1 2 3 4 1 2 3 4 1 2 3 4 1 2 3 4 | tr ' ' '\n' | while read i; do sleep 2; echo found $(($i % 10)); done"],
|
|
filters: {
|
|
findIP: {
|
|
regex: ['^found <num>$'],
|
|
retry: 1,
|
|
retryperiod: '30s',
|
|
actions: {
|
|
damn: {
|
|
cmd: ['echo', '<num>'],
|
|
},
|
|
undamn: {
|
|
cmd: ['echo', 'undamn', '<num>'],
|
|
after: '4s',
|
|
onexit: true,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
// tailDown2: {
|
|
// cmd: ['sh', '-c', 'echo coucou; sleep 2m'],
|
|
// filters: {
|
|
// findIP: {
|
|
// regex: ['^found <num>$'],
|
|
// retry: 3,
|
|
// retryperiod: '30s',
|
|
// actions: {
|
|
// damn: {
|
|
// cmd: ['echo', '<num>'],
|
|
// },
|
|
// undamn: {
|
|
// cmd: ['echo', 'undamn', '<num>'],
|
|
// after: '30s',
|
|
// onexit: true,
|
|
// },
|
|
// },
|
|
// },
|
|
// },
|
|
// },
|
|
},
|
|
}
|