mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-14 01:24:04 -08:00
a99f48cc9f
I initially didn't copy the otlptranslator/prometheus folder because I assumed it wouldn't get changes. But it did. So this PR fixes that and updates the Collector version. Supersedes: https://github.com/prometheus/prometheus/pull/12809 Signed-off-by: Goutham <gouthamve@gmail.com>
17 lines
669 B
Bash
Executable file
17 lines
669 B
Bash
Executable file
#!/bin/bash
|
|
|
|
OTEL_VERSION=v0.88.0
|
|
|
|
git clone https://github.com/open-telemetry/opentelemetry-collector-contrib ./tmp
|
|
cd ./tmp
|
|
git checkout $OTEL_VERSION
|
|
cd ..
|
|
rm -rf ./prometheusremotewrite/*
|
|
cp -r ./tmp/pkg/translator/prometheusremotewrite/*.go ./prometheusremotewrite
|
|
cp -r ./tmp/pkg/translator/prometheus/*.go ./prometheus
|
|
rm -rf ./prometheus/*_test.go
|
|
rm -rf ./tmp
|
|
|
|
sed -i '' 's#github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/prometheus#github.com/prometheus/prometheus/storage/remote/otlptranslator/prometheus#g' ./prometheusremotewrite/*.go
|
|
sed -i '' '1s#^#// DO NOT EDIT. COPIED AS-IS. SEE README.md\n\n#g' ./prometheusremotewrite/*.go
|