mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00

I added the $path to the create_stream() calls inside doc/ as well. * origin/topic/jsiwek/bit-1324: Allow logging filters to inherit default path from stream. BIT-1324: #merged
35 lines
796 B
Text
35 lines
796 B
Text
module Factor;
|
|
|
|
export {
|
|
# Append the value LOG to the Log::ID enumerable.
|
|
redef enum Log::ID += { LOG };
|
|
|
|
# Define a new type called Factor::Info.
|
|
type Info: record {
|
|
num: count &log;
|
|
factorial_num: count &log;
|
|
};
|
|
}
|
|
|
|
function factorial(n: count): count
|
|
{
|
|
if ( n == 0 )
|
|
return 1;
|
|
|
|
else
|
|
return ( n * factorial(n - 1) );
|
|
}
|
|
|
|
event bro_init()
|
|
{
|
|
# Create the logging stream.
|
|
Log::create_stream(LOG, [$columns=Info, $path="factor"]);
|
|
}
|
|
|
|
event bro_done()
|
|
{
|
|
local numbers: vector of count = vector(1, 2, 3, 4, 5, 6, 7, 8, 9, 10);
|
|
for ( n in numbers )
|
|
Log::write( Factor::LOG, [$num=numbers[n],
|
|
$factorial_num=factorial(numbers[n])]);
|
|
}
|