1
0
Форкнуть 0

feat: Upgrade microsatellite version

This commit is contained in:
Ariel Valentin 2021-12-07 00:34:50 +00:00 коммит произвёл GitHub
Родитель 6d0652d957
Коммит 49af7914af
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 4 добавлений и 2 удалений

Просмотреть файл

@ -26,6 +26,8 @@ For now, you'll need to add this repo as a buildpack to your application. We'll
Configure this buildpack by setting configuration variables for your app. At minimum, you must set:
- `COLLECTOR_SATELLITE_KEY`: the satellite requires this to function.
- `COLLECTOR_PLAIN_PORT`: the satellite tries to bind to port 80 by default, which will not work with Heroku.
- `COLLECTOR_SATELLITE_TYPE_FLAVOR`: **Required** Must be set to `micro`
- `COLLECTOR_SAMPLE_ONE_IN_N`: **Required** Must be set to to a sampling value. Set to `1` to sample all traces.
Additional configuration variables can be found [in LightStep's documentation](https://docs.lightstep.com/docs/docker-install-and-configure-satellites).

Просмотреть файл

@ -11,7 +11,7 @@ BUILDPACK_DIR=$(cd "$(dirname "$0")"; cd ..; pwd)
LS_DIR="$BUILD_DIR/.lightstep-collector"
PROFILE_DIR="$BUILD_DIR/.profile.d"
VERSION="2021.03.22.13.16.05Z"
VERSION="2021.10.27.20.01.38Z"
CACHED_VERSION="$CACHE_DIR/lightstep-collector-$VERSION"
arrow() {
@ -24,7 +24,7 @@ if [ ! -d "$CACHED_VERSION" ]; then
-O lightstep-collector.deb \
--quiet \
--content-disposition \
https://packagecloud.io/lightstep/collector/packages/ubuntu/bionic/lightstep-collector_${VERSION}_amd64.deb/download.deb
https://packagecloud.io/lightstep/microsatellite/packages/ubuntu/bionic/lightstep-collector_${VERSION}_amd64.deb/download.deb
dpkg -x lightstep-collector.deb "$CACHED_VERSION"
else