mirror of
https://github.com/prometheus/prometheus
synced 2024-12-26 08:33:06 +00:00
Minor fixes to otlp vendor update script
Signed-off-by: Goutham <gouthamve@gmail.com>
This commit is contained in:
parent
d3dfe486fc
commit
aee6896c47
@ -1,3 +1,5 @@
|
||||
// DO NOT EDIT. COPIED AS-IS. SEE ../README.md
|
||||
|
||||
// Copyright The OpenTelemetry Authors
|
||||
// SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
@ -25,6 +27,7 @@ var dropSanitizationGate = featuregate.GlobalRegistry().MustRegister(
|
||||
//
|
||||
// Exception is made for double-underscores which are allowed
|
||||
func NormalizeLabel(label string) string {
|
||||
|
||||
// Trivial case
|
||||
if len(label) == 0 {
|
||||
return label
|
||||
|
@ -1,3 +1,5 @@
|
||||
// DO NOT EDIT. COPIED AS-IS. SEE ../README.md
|
||||
|
||||
// Copyright The OpenTelemetry Authors
|
||||
// SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
|
@ -1,3 +1,5 @@
|
||||
// DO NOT EDIT. COPIED AS-IS. SEE ../README.md
|
||||
|
||||
// Copyright The OpenTelemetry Authors
|
||||
// SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
// DO NOT EDIT. COPIED AS-IS. SEE README.md
|
||||
// DO NOT EDIT. COPIED AS-IS. SEE ../README.md
|
||||
|
||||
// Copyright The OpenTelemetry Authors
|
||||
// SPDX-License-Identifier: Apache-2.0
|
||||
|
@ -1,4 +1,4 @@
|
||||
// DO NOT EDIT. COPIED AS-IS. SEE README.md
|
||||
// DO NOT EDIT. COPIED AS-IS. SEE ../README.md
|
||||
|
||||
// Copyright The OpenTelemetry Authors
|
||||
// SPDX-License-Identifier: Apache-2.0
|
||||
|
@ -1,4 +1,4 @@
|
||||
// DO NOT EDIT. COPIED AS-IS. SEE README.md
|
||||
// DO NOT EDIT. COPIED AS-IS. SEE ../README.md
|
||||
|
||||
// Copyright The OpenTelemetry Authors
|
||||
// SPDX-License-Identifier: Apache-2.0
|
||||
|
@ -1,4 +1,4 @@
|
||||
// DO NOT EDIT. COPIED AS-IS. SEE README.md
|
||||
// DO NOT EDIT. COPIED AS-IS. SEE ../README.md
|
||||
|
||||
// Copyright The OpenTelemetry Authors
|
||||
// SPDX-License-Identifier: Apache-2.0
|
||||
|
@ -1,4 +1,5 @@
|
||||
#!/bin/bash
|
||||
set -xe
|
||||
|
||||
OTEL_VERSION=v0.88.0
|
||||
|
||||
@ -6,11 +7,16 @@ git clone https://github.com/open-telemetry/opentelemetry-collector-contrib ./tm
|
||||
cd ./tmp
|
||||
git checkout $OTEL_VERSION
|
||||
cd ..
|
||||
|
||||
rm -rf ./prometheusremotewrite/*
|
||||
cp -r ./tmp/pkg/translator/prometheusremotewrite/*.go ./prometheusremotewrite
|
||||
rm -rf ./prometheusremotewrite/*_test.go
|
||||
|
||||
rm -rf ./prometheus/*
|
||||
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
|
||||
sed -i '' '1s#^#// DO NOT EDIT. COPIED AS-IS. SEE ../README.md\n\n#g' ./prometheusremotewrite/*.go ./prometheus/*.go
|
||||
|
Loading…
Reference in New Issue
Block a user