Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Sane Docker Default Config #733

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
* New configuration options `veneur_metrics_scopes` and `veneur_metrics_additional_tags`, which allow configuring veneur such that it aggregates its own metrics globally (rather than reporting a set of internal metrics per instance/container/etc). Thanks, [antifuchs](https://github.com/antifuchs)!
* New SSF `sample` field: `scope`. This field lets clients tell Veneur what to do with the sample - it corresponds exactly to the `veneurglobalonly` and `veneurlocalonly` tags that metrics can hold. Thanks, [antifuchs](https://github.com/antifuchs)!
* veneur-prometheus now allows you to specify mTLS configuration for the polling HTTP client. Thanks, [choo-stripe](https://github.com/choo-stripe)!
* Added a docker-specific default config that has no sinks enabled by default (see https://github.com/stripe/veneur/issues/705). Thanks [daviddyball](https://github.com/daviddyball)

## Updated

Expand Down
2 changes: 1 addition & 1 deletion public-docker-images/Dockerfile-alpine
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ RUN apk add --no-cache ca-certificates
WORKDIR /veneur/
EXPOSE 8126/UDP 8126/TCP 8127/TCP 8128/UDP
COPY --from=build /build/* /veneur/
COPY --from=src /go/src/github.com/stripe/veneur/example.yaml /veneur/config.yaml
COPY --from=src /go/src/github.com/stripe/veneur/public-docker-images/veneur.config.yaml /veneur/config.yaml
COPY --from=src /go/src/github.com/stripe/veneur/example_proxy.yaml /veneur/config_proxy.yaml
ENV PATH="/veneur:${PATH}"
CMD ["/veneur/veneur", "-f", "config.yaml"]
2 changes: 1 addition & 1 deletion public-docker-images/Dockerfile-debian-sid
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ RUN apt-get update && apt-get -y install ca-certificates
WORKDIR /veneur/
EXPOSE 8126/UDP 8126/TCP 8127/TCP 8128/UDP
COPY --from=build /build/* /veneur/
COPY --from=src /go/src/github.com/stripe/veneur/example.yaml /veneur/config.yaml
COPY --from=src /go/src/github.com/stripe/veneur/public-docker-images/veneur.config.yaml /veneur/config.yaml
COPY --from=src /go/src/github.com/stripe/veneur/example_proxy.yaml /veneur/config_proxy.yaml
ENV PATH="/veneur:${PATH}"
CMD ["/veneur/veneur", "-f", "config.yaml"]
Loading