forked from open-telemetry/opentelemetry-collector-releases
-
Notifications
You must be signed in to change notification settings - Fork 0
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 #13 from axoflow/fluentforward_exporter
feat(exporters): fluentforward
- Loading branch information
Showing
16 changed files
with
68 additions
and
65 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ OTELCOL_BUILDER_VERSION ?= 0.97.0 | |
OTELCOL_BUILDER_DIR ?= ${HOME}/bin | ||
OTELCOL_BUILDER ?= ${OTELCOL_BUILDER_DIR}/ocb | ||
|
||
DISTRIBUTIONS ?= "otelcol-contrib" | ||
DISTRIBUTIONS ?= "axoflow-otel-collector" | ||
|
||
ci: check build | ||
check: ensure-goreleaser-up-to-date | ||
|
@@ -64,7 +64,7 @@ goreleaser: | |
fi \ | ||
} | ||
|
||
REMOTE?[email protected]:axoflow/opentelemetry-collector-releases.git | ||
REMOTE?[email protected]:axoflow/axoflow-otel-collector-releases.git | ||
.PHONY: push-tags | ||
push-tags: | ||
@[ "${TAG}" ] || ( echo ">> env var TAG is not set"; exit 1 ) | ||
|
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
File renamed without changes.
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,14 @@ | ||
FROM alpine:3.16 as certs | ||
RUN apk --update add ca-certificates | ||
|
||
FROM scratch | ||
|
||
ARG USER_UID=10001 | ||
USER ${USER_UID} | ||
|
||
COPY --from=certs /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt | ||
COPY --chmod=755 axoflow-otel-collector /axoflow-otel-collector | ||
COPY configs/axoflow-otel-collector.yaml /etc/axoflow-otel-collector/config.yaml | ||
ENTRYPOINT ["/axoflow-otel-collector"] | ||
CMD ["--config", "/etc/axoflow-otel-collector/config.yaml"] | ||
EXPOSE 4317 55678 55679 |
File renamed without changes.
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,5 @@ | ||
# Systemd environment file for the axoflow-otel-collector service | ||
|
||
# Command-line options for the axoflow-otel-collector service. | ||
# Run `/usr/bin/axoflow-otel-collector --help` to see all available options. | ||
OTELCOL_OPTIONS="--config=/etc/axoflow-otel-collector/config.yaml" |
15 changes: 15 additions & 0 deletions
15
distributions/axoflow-otel-collector/otelcol-contrib.service
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,15 @@ | ||
[Unit] | ||
Description=OpenTelemetry Collector Contrib | ||
After=network.target | ||
|
||
[Service] | ||
EnvironmentFile=/etc/axoflow-otel-collector/axoflow-otel-collector.conf | ||
ExecStart=/usr/bin/axoflow-otel-collector $OTELCOL_OPTIONS | ||
KillMode=mixed | ||
Restart=on-failure | ||
Type=simple | ||
User=axoflow-otel-collector | ||
Group=axoflow-otel-collector | ||
|
||
[Install] | ||
WantedBy=multi-user.target |
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.