-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #47 from mmacata/stdout-logging
Enable stdout logging
- Loading branch information
Showing
35 changed files
with
787 additions
and
243 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,5 @@ | ||
FROM mundialis/actinia-core | ||
FROM mundialis/actinia-core:g78-latest-alpine | ||
|
||
# Copy actinia config file and start scripts | ||
COPY actinia.cfg /etc/default/actinia | ||
|
||
WORKDIR /src/actinia_core | ||
RUN python3 setup.py install | ||
|
||
EXPOSE 8088 | ||
EXPOSE 9191 | ||
|
||
ENTRYPOINT ["/bin/bash"] | ||
CMD ["/src/start.sh"] | ||
RUN pip3 uninstall actinia-core -y |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
FROM fluent/fluentd | ||
RUN ["gem", "install", "fluent-plugin-elasticsearch", "--no-rdoc", "--no-ri", "--version", "3.5.5"] | ||
RUN rm /fluentd/etc/fluent.conf | ||
COPY fluent.conf /fluentd/etc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# fluent.conf | ||
<source> | ||
@type forward | ||
port 24224 | ||
bind 0.0.0.0 | ||
</source> | ||
<match *.**> | ||
@type copy | ||
<store> | ||
@type elasticsearch | ||
host elasticsearch | ||
port 9200 | ||
logstash_format true | ||
logstash_prefix fluentd | ||
logstash_dateformat %Y%m%d | ||
include_tag_key true | ||
type_name access_log | ||
tag_key @log_name | ||
flush_interval 1s | ||
</store> | ||
<store> | ||
@type file | ||
@id output1 | ||
path /fluentd/log/data.*.log | ||
symlink_path /fluentd/log/data.log | ||
append true | ||
time_slice_format %Y%m%d | ||
time_slice_wait 10m | ||
time_format %Y%m%dT%H%M%S%z | ||
</store> | ||
</match> | ||
<filter **> | ||
@type stdout | ||
</filter> |
Oops, something went wrong.