Skip to content

Commit c0d7dcd

Browse files
authored
Merge branch 'main' into multi-cluster
2 parents 41eb315 + fecddf0 commit c0d7dcd

File tree

11 files changed

+41
-22
lines changed

11 files changed

+41
-22
lines changed

.chloggen/upgrade-dotnet.yaml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix'
2+
change_type: enhancement
3+
4+
# The name of the component, or a single word describing the area of concern, (e.g. operator, target allocator, github action)
5+
component: autoinstrumentation
6+
7+
# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`).
8+
note: Bump dotnet instrumentation version to 1.0.0
9+
10+
# One or more tracking issues related to the change
11+
issues: [2096]
12+
13+
# (Optional) One or more lines of additional information to render under the primary note.
14+
# These lines will be padded with 2 spaces and then inserted directly into the document.
15+
# Use pipe (|) for multiline entries.
16+
subtext:

.github/workflows/continuous-integration.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Set up Go
1919
uses: actions/setup-go@v3
2020
with:
21-
go-version: "1.21"
21+
go-version: "~1.21.1"
2222

2323
- name: Check out code into the Go module directory
2424
uses: actions/checkout@v4
@@ -33,7 +33,7 @@ jobs:
3333
- name: Set up Go
3434
uses: actions/setup-go@v4
3535
with:
36-
go-version: "1.21"
36+
go-version: "~1.21.1"
3737
- name: Check out code into the Go module directory
3838
uses: actions/checkout@v4
3939

.github/workflows/e2e.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
- name: Set up Go
3939
uses: actions/setup-go@v4
4040
with:
41-
go-version: "1.21"
41+
go-version: "~1.21.1"
4242

4343
- name: Setup kind
4444
env:

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
- name: Set up Go
1111
uses: actions/setup-go@v3
1212
with:
13-
go-version: "1.21"
13+
go-version: "~1.21.1"
1414

1515
- uses: actions/checkout@v4
1616

.github/workflows/scorecard.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- name: Set up Go
3030
uses: actions/setup-go@v4
3131
with:
32-
go-version: "1.21"
32+
go-version: "~1.21.1"
3333

3434
- name: Setup kind
3535
env:

autoinstrumentation/dotnet/Dockerfile

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
# - Following environment variables are injected to the application container to enable the auto-instrumentation.
66
# CORECLR_ENABLE_PROFILING=1
77
# CORECLR_PROFILER={918728DD-259F-4A6A-AC2B-B85E1B658318}
8-
# CORECLR_PROFILER_PATH=%InstallationLocation%/linux-x64/OpenTelemetry.AutoInstrumentation.Native.so
8+
# CORECLR_PROFILER_PATH=%InstallationLocation%/linux-x64/OpenTelemetry.AutoInstrumentation.Native.so # for glibc based images
9+
# CORECLR_PROFILER_PATH=%InstallationLocation%/linux-musl-x64/OpenTelemetry.AutoInstrumentation.Native.so # for musl based images
910
# DOTNET_ADDITIONAL_DEPS=%InstallationLocation%/AdditionalDeps
1011
# DOTNET_SHARED_STORE=%InstallationLocation%/store
1112
# DOTNET_STARTUP_HOOKS=%InstallationLocation%/net/OpenTelemetry.AutoInstrumentation.StartupHook.dll
@@ -20,7 +21,9 @@ ARG version
2021
WORKDIR /autoinstrumentation
2122

2223
ADD https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/releases/download/v$version/opentelemetry-dotnet-instrumentation-linux-glibc.zip .
24+
ADD https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/releases/download/v$version/opentelemetry-dotnet-instrumentation-linux-musl.zip .
2325

24-
RUN unzip opentelemetry-dotnet-instrumentation-linux-glibc.zip
25-
26-
RUN chmod -R go+r .
26+
RUN unzip opentelemetry-dotnet-instrumentation-linux-glibc.zip &&\
27+
unzip opentelemetry-dotnet-instrumentation-linux-musl.zip "linux-musl-x64/*" -d . &&\
28+
rm opentelemetry-dotnet-instrumentation-linux-glibc.zip opentelemetry-dotnet-instrumentation-linux-musl.zip &&\
29+
chmod -R go+r .
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.0.0-rc.2
1+
1.0.0

cmd/otel-allocator/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ require (
1818
github.com/prometheus-operator/prometheus-operator/pkg/client v0.67.1
1919
github.com/prometheus/client_golang v1.16.0
2020
github.com/prometheus/common v0.44.0
21-
github.com/prometheus/prometheus v0.46.0
21+
github.com/prometheus/prometheus v0.47.0
2222
github.com/spf13/pflag v1.0.5
2323
github.com/stretchr/testify v1.8.4
2424
gopkg.in/yaml.v2 v2.4.0
@@ -158,7 +158,7 @@ require (
158158
github.com/prometheus/client_model v0.4.0 // indirect
159159
github.com/prometheus/common/sigv4 v0.1.0 // indirect
160160
github.com/prometheus/procfs v0.11.0 // indirect
161-
github.com/scaleway/scaleway-sdk-go v1.0.0-beta.19 // indirect
161+
github.com/scaleway/scaleway-sdk-go v1.0.0-beta.20 // indirect
162162
github.com/spf13/cobra v1.7.0 // indirect
163163
github.com/twitchyliquid64/golang-asm v0.15.1 // indirect
164164
github.com/ugorji/go/codec v1.2.11 // indirect

cmd/otel-allocator/go.sum

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -613,17 +613,17 @@ github.com/prometheus/procfs v0.1.3/go.mod h1:lV6e/gmhEcM9IjHGsFOCxxuZ+z1YqCvr4O
613613
github.com/prometheus/procfs v0.6.0/go.mod h1:cz+aTbrPOrUb4q7XlbU9ygM+/jj0fzG6c1xBZuNvfVA=
614614
github.com/prometheus/procfs v0.11.0 h1:5EAgkfkMl659uZPbe9AS2N68a7Cc1TJbPEuGzFuRbyk=
615615
github.com/prometheus/procfs v0.11.0/go.mod h1:nwNm2aOCAYw8uTR/9bWRREkZFxAUcWzPHWJq+XBB/FM=
616-
github.com/prometheus/prometheus v0.46.0 h1:9JSdXnsuT6YsbODEhSQMwxNkGwPExfmzqG73vCMk/Kw=
617-
github.com/prometheus/prometheus v0.46.0/go.mod h1:10L5IJE5CEsjee1FnOcVswYXlPIscDWWt3IJ2UDYrz4=
616+
github.com/prometheus/prometheus v0.47.0 h1:tIJJKZGlmrMVsvIt6rMfB8he7CRHEc8ZxS5ubcZtbkM=
617+
github.com/prometheus/prometheus v0.47.0/go.mod h1:J/bmOSjgH7lFxz2gZhrWEZs2i64vMS+HIuZfmYNhJ/M=
618618
github.com/rogpeppe/fastuuid v1.2.0/go.mod h1:jVj6XXZzXRy/MSR5jhDC/2q6DgLz+nrA6LYCDYWNEvQ=
619619
github.com/rogpeppe/go-internal v1.1.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4=
620620
github.com/rogpeppe/go-internal v1.2.2/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4=
621621
github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4=
622622
github.com/rogpeppe/go-internal v1.11.0 h1:cWPaGQEPrBb5/AsnsZesgZZ9yb1OQ+GOISoDNXVBh4M=
623623
github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM=
624624
github.com/ryanuber/columnize v0.0.0-20160712163229-9b3edd62028f/go.mod h1:sm1tb6uqfes/u+d4ooFouqFdy9/2g9QGwK3SQygK0Ts=
625-
github.com/scaleway/scaleway-sdk-go v1.0.0-beta.19 h1:+1H+N9QFl2Sfvia0FBYfMrHYHYhmpZxhSE0wpPL2lYs=
626-
github.com/scaleway/scaleway-sdk-go v1.0.0-beta.19/go.mod h1:fCa7OJZ/9DRTnOKmxvT6pn+LPWUptQAmHF/SBJUGEcg=
625+
github.com/scaleway/scaleway-sdk-go v1.0.0-beta.20 h1:a9hSJdJcd16e0HoMsnFvaHvxB3pxSD+SC7+CISp7xY0=
626+
github.com/scaleway/scaleway-sdk-go v1.0.0-beta.20/go.mod h1:fCa7OJZ/9DRTnOKmxvT6pn+LPWUptQAmHF/SBJUGEcg=
627627
github.com/sean-/seed v0.0.0-20170313163322-e2103e2c3529 h1:nn5Wsu0esKSJiIVhscUtVbo7ada43DJhG55ua/hjS5I=
628628
github.com/sean-/seed v0.0.0-20170313163322-e2103e2c3529/go.mod h1:DxrIzT+xaE7yg65j358z/aeFdxmN0P9QXhEzd20vsDc=
629629
github.com/shoenig/test v0.6.6 h1:Oe8TPH9wAbv++YPNDKJWUnI8Q4PPWCx3UbOfH+FxiMU=

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ require (
1010
github.com/mitchellh/mapstructure v1.5.0
1111
github.com/openshift/api v3.9.0+incompatible
1212
github.com/prometheus-operator/prometheus-operator/pkg/apis/monitoring v0.67.1
13-
github.com/prometheus/prometheus v0.46.0
13+
github.com/prometheus/prometheus v0.47.0
1414
github.com/spf13/pflag v1.0.5
1515
github.com/stretchr/testify v1.8.4
1616
go.opentelemetry.io/collector/featuregate v0.77.0
@@ -128,7 +128,7 @@ require (
128128
github.com/prometheus/common v0.44.0 // indirect
129129
github.com/prometheus/common/sigv4 v0.1.0 // indirect
130130
github.com/prometheus/procfs v0.11.0 // indirect
131-
github.com/scaleway/scaleway-sdk-go v1.0.0-beta.19 // indirect
131+
github.com/scaleway/scaleway-sdk-go v1.0.0-beta.20 // indirect
132132
github.com/spf13/cobra v1.7.0 // indirect
133133
github.com/vultr/govultr/v2 v2.17.2 // indirect
134134
go.opencensus.io v0.24.0 // indirect

0 commit comments

Comments
 (0)