Skip to content

Commit 4e35ba5

Browse files
authored
Merge branch 'main' into feat/3086-allow-configuration-prometheus-cr
2 parents 8466c33 + 0e54419 commit 4e35ba5

9 files changed

+28
-10
lines changed
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. collector, target allocator, auto-instrumentation, opamp, github action)
5+
component: auto-instrumentation
6+
7+
# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`).
8+
note: add Python instrumentation of aiokafka, click
9+
10+
# One or more tracking issues related to the change
11+
issues: [3611]
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/changelog.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- name: Setup Go
3434
uses: actions/setup-go@v5
3535
with:
36-
go-version: "~1.23.4"
36+
go-version: "~1.23.5"
3737

3838
- name: Ensure no changes to the CHANGELOG
3939
run: |

.github/workflows/continuous-integration.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
uses: actions/setup-go@v5
2323
id: setup-go
2424
with:
25-
go-version: "~1.23.4"
25+
go-version: "~1.23.5"
2626

2727
- name: Cache tools
2828
uses: actions/cache@v4
@@ -46,7 +46,7 @@ jobs:
4646
- name: Set up Go
4747
uses: actions/setup-go@v5
4848
with:
49-
go-version: "~1.23.4"
49+
go-version: "~1.23.5"
5050

5151
- name: Cache tools
5252
uses: actions/cache@v4
@@ -79,7 +79,7 @@ jobs:
7979
- name: Set up Go
8080
uses: actions/setup-go@v5
8181
with:
82-
go-version: "~1.23.4"
82+
go-version: "~1.23.5"
8383

8484
- name: Initialize CodeQL
8585
uses: github/codeql-action/init@v3

.github/workflows/e2e.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
uses: actions/setup-go@v5
6262
id: setup-go
6363
with:
64-
go-version: "~1.23.4"
64+
go-version: "~1.23.5"
6565
- name: Cache tools
6666
uses: actions/cache@v4
6767
with:

.github/workflows/release.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
- name: Set up Go
3737
uses: actions/setup-go@v5
3838
with:
39-
go-version: "~1.23.4"
39+
go-version: "~1.23.5"
4040

4141
- name: "generate release resources"
4242
run: make release-artifacts IMG_PREFIX="ghcr.io/open-telemetry/opentelemetry-operator" VERSION=${DESIRED_VERSION}

.github/workflows/scorecard.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
uses: actions/setup-go@v5
2727
id: setup-go
2828
with:
29-
go-version: "~1.23.4"
29+
go-version: "~1.23.5"
3030

3131
- name: Check out code into the Go module directory
3232
uses: actions/checkout@v4

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -492,7 +492,7 @@ GOLANGCI_LINT ?= $(LOCALBIN)/golangci-lint
492492
CHAINSAW ?= $(LOCALBIN)/chainsaw
493493

494494
# renovate: datasource=go depName=sigs.k8s.io/kustomize/kustomize/v5
495-
KUSTOMIZE_VERSION ?= v5.5.0
495+
KUSTOMIZE_VERSION ?= v5.6.0
496496
# renovate: datasource=go depName=sigs.k8s.io/controller-tools/cmd/controller-gen
497497
CONTROLLER_TOOLS_VERSION ?= v0.17.1
498498
# renovate: datasource=go depName=github.com/golangci/golangci-lint/cmd/golangci-lint

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -750,7 +750,7 @@ metadata:
750750
# this is just an example, you can create any resource attributes you need
751751
resource.opentelemetry.io/service.name: "my-service"
752752
resource.opentelemetry.io/service.version: "1.0.0"
753-
resource.opentelemetry.io/environment: "production"
753+
resource.opentelemetry.io/deployment.environment.name: "production"
754754
spec:
755755
containers:
756756
- name: main-container
@@ -817,7 +817,7 @@ Choose the first value found:
817817

818818
- `pod.annotation[resource.opentelemetry.io/service.name]`
819819
- `if (config[useLabelsForResourceAttributes]) pod.label[app.kubernetes.io/name]`
820-
- `k8s.depleyment.name`
820+
- `k8s.deployment.name`
821821
- `k8s.replicaset.name`
822822
- `k8s.statefulset.name`
823823
- `k8s.daemonset.name`

autoinstrumentation/python/requirements.txt

+2
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ opentelemetry-propagator-ot-trace==0.50b0
1515
opentelemetry-instrumentation-aio-pika==0.50b0
1616
opentelemetry-instrumentation-aiohttp-client==0.50b0
1717
opentelemetry-instrumentation-aiohttp-server==0.50b0
18+
opentelemetry-instrumentation-aiokafka==0.50.b0
1819
opentelemetry-instrumentation-aiopg==0.50b0
1920
opentelemetry-instrumentation-asgi==0.50b0
2021
opentelemetry-instrumentation-asyncio==0.50b0
@@ -25,6 +26,7 @@ opentelemetry-instrumentation-boto3sqs==0.50b0
2526
opentelemetry-instrumentation-botocore==0.50b0
2627
opentelemetry-instrumentation-cassandra==0.50b0
2728
opentelemetry-instrumentation-celery==0.50b0
29+
opentelemetry-instrumentation-click==0.50b0
2830
opentelemetry-instrumentation-confluent-kafka==0.50b0
2931
opentelemetry-instrumentation-dbapi==0.50b0
3032
opentelemetry-instrumentation-django==0.50b0

0 commit comments

Comments
 (0)