Skip to content
Snippets Groups Projects
Commit 0774493a authored by Tim Schoof's avatar Tim Schoof Committed by Sergey Yakubov
Browse files

Install fluent-bit and enable raw_exec driver

parent c1392e78
No related branches found
No related tags found
No related merge requests found
......@@ -9,14 +9,19 @@ RUN apt-get update && apt-get install -y supervisor apt-transport-https \
software-properties-common dnsutils
RUN curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add -
RUN curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add - && \
curl -fsSL https://packages.fluentbit.io/fluentbit.key | apt-key add -
RUN add-apt-repository \
"deb [arch=amd64] https://download.docker.com/linux/ubuntu \
$(lsb_release -cs) \
stable"
stable" && \
add-apt-repository \
"deb [arch=amd64] https://packages.fluentbit.io/ubuntu/$(lsb_release -cs) \
$(lsb_release -cs) \
main"
RUN apt-get update && apt-get install -y docker-ce-cli wget unzip iproute2 vim
RUN apt-get update && apt-get install -y docker-ce-cli wget unzip iproute2 vim td-agent-bit
ENV CONSUL_VERSION=1.6.0
......
......@@ -39,6 +39,12 @@ plugin "docker" {
}
}
plugin "raw_exec" {
config {
enabled = true
}
}
telemetry {
publish_allocation_metrics = $use_telemetry
publish_node_metrics = $use_telemetry
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment