aboutsummaryrefslogtreecommitdiffstats
path: root/framework/src/suricata/contrib/file_processor/Action/Log.pm
diff options
context:
space:
mode:
Diffstat (limited to 'framework/src/suricata/contrib/file_processor/Action/Log.pm')
-rw-r--r--framework/src/suricata/contrib/file_processor/Action/Log.pm15
1 files changed, 15 insertions, 0 deletions
diff --git a/framework/src/suricata/contrib/file_processor/Action/Log.pm b/framework/src/suricata/contrib/file_processor/Action/Log.pm
new file mode 100644
index 00000000..f47fedbe
--- /dev/null
+++ b/framework/src/suricata/contrib/file_processor/Action/Log.pm
@@ -0,0 +1,15 @@
+package Action::Log;
+use Moose;
+extends 'Processor';
+
+has 'data' => (is => 'rw', isa => 'HashRef', required => 1);
+
+sub name { 'log' }
+sub description { 'Log to file' }
+
+sub perform {
+ my $self = shift;
+ $self->log->info($self->json->encode($self->data));
+}
+
+1 \ No newline at end of file