Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/svrnm/otel-abuild
https://github.com/svrnm/otel-abuild
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/svrnm/otel-abuild
- Owner: svrnm
- Created: 2023-01-28T08:12:45.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-09-13T15:04:37.000Z (about 2 months ago)
- Last Synced: 2024-09-14T06:02:45.296Z (about 2 months ago)
- Language: Shell
- Size: 6.84 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Alpine APK for OpenTelemetry C++
This project contains an [APKBUILD](./APKBUILD) file for [OpenTelemetry C++](https://github.com/open-telemetry/opentelemetry-cpp)
Before you can build those packages you need to create a signing key:
```
./keygen.sh
```This will create a folder called `abuild` with a private-public-key pair. Make a copy of them.
To build the packages run the following:
```
./build.sh
```You will have a folder `packages` now that holds the following packages:
* opentelemetry-cpp
* opentelemetry-cpp-dev
* opentelemetry-cpp-doc
* opentelemetry-cpp-exporter-otlp-common
* opentelemetry-cpp-exporter-otlp-grpc
* opentelemetry-cpp-exporter-otlp-http
* opentelemetry-cpp-exporter-zipkinTo try them out run the following
```
docker run -v ${PWD}/packages:/packages --rm -t -i alpine
```Within the container you can now install those packages:
```
apk search --allow-untrusted --repository /packages opentelemetry-cpp
```