Skip to content

Commit

Permalink
added class for fs output
Browse files Browse the repository at this point in the history
  • Loading branch information
bhnedo committed Apr 15, 2017
1 parent c28a49d commit f7c3401
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion fibratus/entrypoint.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
from fibratus.output.aggregator import OutputAggregator
from fibratus.output.console import ConsoleOutput
from fibratus.output.elasticsearch import ElasticsearchOutput
from fibratus.output.fs import FsOutput
from fibratus.output.smtp import SmtpOutput
from logbook import Logger, FileHandler, StreamHandler

Expand Down Expand Up @@ -111,7 +112,8 @@ def __init__(self, filament, **kwargs):
self._output_classes = dict(console=ConsoleOutput,
amqp=AmqpOutput,
smtp=SmtpOutput,
elasticsearch=ElasticsearchOutput)
elasticsearch=ElasticsearchOutput,
fs=FsOutput)
self._outputs = self._construct_outputs()
self.output_aggregator = OutputAggregator(self._outputs)

Expand Down

0 comments on commit f7c3401

Please sign in to comment.