Skip to content

Commit 54f0dc7

Browse files
authored
Merge branch 'main' into signalfx-use-logical-cpu-count
2 parents e3dff43 + 0caa582 commit 54f0dc7

51 files changed

Lines changed: 243 additions & 95 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Use this changelog template to create an entry for release notes.
2+
3+
# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix'
4+
change_type: enhancement
5+
6+
# The name of the component, or a single word describing the area of concern, (e.g. receiver/filelog)
7+
component: cmd/opampsupervisor
8+
9+
# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`).
10+
note: Allow Supervisor to configure its managed OpAMP extension config to include Collector resource attributes
11+
12+
# Mandatory: One or more tracking issues related to the change. You can use the PR number here if no issue exists.
13+
issues: [48536]
14+
15+
# (Optional) One or more lines of additional information to render under the primary note.
16+
# These lines will be padded with 2 spaces and then inserted directly into the document.
17+
# Use pipe (|) for multiline entries.
18+
subtext:
19+
20+
# If your change doesn't affect end users or the exported elements of any package,
21+
# you should instead start your pull request title with [chore] or use the "Skip Changelog" label.
22+
# Optional: The change log or logs in which this entry should be included.
23+
# e.g. '[user]' or '[user, api]'
24+
# Include 'user' if the change is relevant to end users.
25+
# Include 'api' if there is a change to a library API.
26+
# Default: '[user]'
27+
change_logs: []
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Use this changelog template to create an entry for release notes.
2+
3+
# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix'
4+
change_type: enhancement
5+
6+
# The name of the component, or a single word describing the area of concern, (e.g. receiver/filelog)
7+
component: receiver/host_metrics
8+
9+
# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`).
10+
note: Enable the Android platform in the `process` scraper.
11+
12+
# Mandatory: One or more tracking issues related to the change. You can use the PR number here if no issue exists.
13+
issues: [47296]
14+
15+
# (Optional) One or more lines of additional information to render under the primary note.
16+
# These lines will be padded with 2 spaces and then inserted directly into the document.
17+
# Use pipe (|) for multiline entries.
18+
subtext:
19+
20+
# If your change doesn't affect end users or the exported elements of any package,
21+
# you should instead start your pull request title with [chore] or use the "Skip Changelog" label.
22+
# Optional: The change log or logs in which this entry should be included.
23+
# e.g. '[user]' or '[user, api]'
24+
# Include 'user' if the change is relevant to end users.
25+
# Include 'api' if there is a change to a library API.
26+
# Default: '[user]'
27+
change_logs: []

.github/workflows/add-codeowners-to-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-24.04
1616
if: ${{ github.actor != 'dependabot[bot]' && github.repository_owner == 'open-telemetry' && github.event.pull_request.draft == false }}
1717
steps:
18-
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
18+
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
1919

2020
- name: Run add-codeowners-to-pr.sh
2121
run: ./.github/workflows/scripts/add-codeowners-to-pr.sh

.github/workflows/add-labels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313

1414
runs-on: ubuntu-24.04
1515
steps:
16-
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
16+
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
1717

1818
- name: Run update permissions
1919
run: chmod +x ./.github/workflows/scripts/add-labels.sh

.github/workflows/approve-workflows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
contents: read
1515
runs-on: ubuntu-24.04
1616
steps:
17-
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
17+
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
1818
- uses: actions/create-github-app-token@bcd2ba49218906704ab6c1aa796996da409d3eb1 # v3.2.0
1919
id: otelbot-token
2020
with:

.github/workflows/build-and-test-arm.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
runs-on: ubuntu-24.04-arm
2525
if: ${{ github.actor != 'dependabot[bot]' && (!contains(github.event.pull_request.labels.*.name, 'Skip ARM') || github.event_name == 'push' || github.event_name == 'merge_group') }}
2626
steps:
27-
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
27+
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
2828
- uses: ./.github/actions/setup-go-tools
2929
with:
3030
go-version: oldstable
@@ -55,7 +55,7 @@ jobs:
5555
timeout-minutes: 30
5656
runs-on: ubuntu-24.04-arm
5757
steps:
58-
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
58+
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
5959
- uses: ./.github/actions/setup-go-tools
6060
with:
6161
go-version: oldstable
@@ -113,7 +113,7 @@ jobs:
113113
permissions:
114114
issues: write
115115
steps:
116-
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
116+
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
117117
- uses: ./.github/actions/setup-go-tools
118118
with:
119119
go-version: oldstable

.github/workflows/build-and-test-darwin.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
runs-on: ${{ matrix.os }}
3232
if: ${{ github.actor != 'dependabot[bot]' && (contains(github.event.pull_request.labels.*.name, 'Run Darwin') || github.event_name == 'push' || github.event_name == 'merge_group') }}
3333
steps:
34-
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
34+
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
3535
- uses: ./.github/actions/setup-go-tools
3636
with:
3737
go-version: oldstable
@@ -46,7 +46,7 @@ jobs:
4646
runs-on: ${{ matrix.os }}
4747
timeout-minutes: 120
4848
steps:
49-
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
49+
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
5050
- uses: ./.github/actions/setup-go-tools
5151
with:
5252
go-version: oldstable
@@ -73,7 +73,7 @@ jobs:
7373
timeout-minutes: 30
7474
runs-on: ${{ matrix.os }}
7575
steps:
76-
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
76+
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
7777
- uses: ./.github/actions/setup-go-tools
7878
with:
7979
go-version: oldstable

.github/workflows/build-and-test-windows.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
os: [ windows-latest, windows-11-arm ]
3333
runs-on: ${{ matrix.os }}
3434
steps:
35-
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
35+
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
3636
- uses: ./.github/actions/setup-go-tools
3737
with:
3838
go-version: oldstable
@@ -46,7 +46,7 @@ jobs:
4646
os: [ windows-latest, windows-11-arm ]
4747
runs-on: ${{ matrix.os }}
4848
steps:
49-
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
49+
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
5050
- uses: ./.github/actions/setup-go-tools
5151
with:
5252
go-version: oldstable
@@ -89,7 +89,7 @@ jobs:
8989
# The gcc installed on the Windows arm64 runner doesn't ship native ARM libraries so we need to disable CGO.
9090
CGO_ENABLED: ${{ matrix.os == 'windows-11-arm' && '0' || '' }}
9191
steps:
92-
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
92+
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
9393
- uses: ./.github/actions/setup-go-tools
9494
with:
9595
go-version: oldstable
@@ -156,7 +156,7 @@ jobs:
156156
permissions:
157157
issues: write
158158
steps:
159-
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
159+
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
160160
- uses: ./.github/actions/setup-go-tools
161161
with:
162162
go-version: oldstable

.github/workflows/build-and-test.yml

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
runs-on: ubuntu-24.04
3333
if: ${{ github.actor != 'dependabot[bot]' && ((github.event.action != 'labeled' && github.event.action != 'unlabeled') || github.event.label.name == 'ci:full') }}
3434
steps:
35-
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
35+
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
3636
- uses: ./.github/actions/setup-go-tools
3737
with:
3838
go-version: oldstable
@@ -41,7 +41,7 @@ jobs:
4141
runs-on: ubuntu-24.04
4242
needs: [setup-environment]
4343
steps:
44-
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
44+
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
4545
- run: make genotelcontribcol
4646
- name: Check Collector Module Version
4747
run: ./.github/workflows/scripts/check-collector-module-version.sh
@@ -68,7 +68,7 @@ jobs:
6868
direct_matrix: ${{ steps.post.outputs.direct_matrix }}
6969
mode: ${{ steps.post.outputs.mode }}
7070
steps:
71-
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
71+
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
7272
with:
7373
fetch-depth: 0
7474
- name: Compute scope
@@ -157,7 +157,7 @@ jobs:
157157
group: ${{ fromJSON(needs.ci-scope.outputs.direct_matrix) }}
158158
runs-on: ubuntu-24.04
159159
steps:
160-
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
160+
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
161161
- uses: ./.github/actions/setup-go-tools
162162
with:
163163
go-version: oldstable
@@ -205,7 +205,7 @@ jobs:
205205
needs: [setup-environment]
206206
steps:
207207
- name: Checkout Repo
208-
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
208+
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
209209
- uses: ./.github/actions/setup-go-tools
210210
with:
211211
go-version: 1.25.11 # TODO: revert to oldstable when actions/setup-go reliably resolves oldstable to 1.25.11
@@ -242,7 +242,7 @@ jobs:
242242
- schemas-and-templates
243243
- read-only-checks
244244
steps:
245-
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
245+
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
246246
- uses: ./.github/actions/setup-go-tools
247247
with:
248248
go-version: oldstable
@@ -278,7 +278,7 @@ jobs:
278278
group: ${{ fromJSON(needs.ci-scope.outputs.matrix) }}
279279
runs-on: ${{ matrix.runner }}
280280
steps:
281-
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
281+
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
282282
- uses: ./.github/actions/setup-go-tools
283283
with:
284284
go-version: oldstable
@@ -343,7 +343,7 @@ jobs:
343343
runs-on: ubuntu-24.04
344344
needs: [unittest]
345345
steps:
346-
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
346+
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
347347
- uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8
348348
with:
349349
merge-multiple: true
@@ -362,7 +362,7 @@ jobs:
362362
group: ${{ fromJSON(needs.ci-scope.outputs.matrix) }}
363363
runs-on: ubuntu-24.04
364364
steps:
365-
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
365+
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
366366
- uses: ./.github/actions/setup-go-tools
367367
with:
368368
go-version: oldstable
@@ -402,7 +402,7 @@ jobs:
402402
- receiver/icmpcheckreceiver
403403
runs-on: ubuntu-24.04
404404
steps:
405-
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
405+
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
406406
- uses: ./.github/actions/setup-go-tools
407407
with:
408408
go-version: oldstable
@@ -436,7 +436,7 @@ jobs:
436436
runs-on: ubuntu-24.04
437437
needs: [setup-environment]
438438
steps:
439-
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
439+
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
440440
- uses: ./.github/actions/setup-go-tools
441441
with:
442442
go-version: oldstable
@@ -447,7 +447,7 @@ jobs:
447447
runs-on: ubuntu-24.04
448448
needs: [setup-environment]
449449
steps:
450-
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
450+
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
451451
- uses: ./.github/actions/setup-go-tools
452452
with:
453453
go-version: oldstable
@@ -459,7 +459,7 @@ jobs:
459459
runs-on: ubuntu-24.04
460460
needs: [setup-environment]
461461
steps:
462-
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
462+
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
463463
- uses: ./.github/actions/setup-go-tools
464464
with:
465465
go-version: oldstable
@@ -488,7 +488,7 @@ jobs:
488488
# write a parallel PR-scoped entry and pressure the 10 GB pool) and
489489
# builds cold on the larger CNCF hardware.
490490
steps:
491-
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
491+
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
492492
- uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6
493493
with:
494494
go-version: oldstable
@@ -550,7 +550,7 @@ jobs:
550550
arch: ppc64
551551
runner: ubuntu-24.04
552552
steps:
553-
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
553+
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
554554
- uses: ./.github/actions/setup-go-tools
555555
with:
556556
go-version: oldstable
@@ -570,7 +570,7 @@ jobs:
570570
runs-on: ubuntu-24.04
571571
needs: [lint, unittest, integration-tests, cross-compile]
572572
steps:
573-
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
573+
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
574574
with:
575575
sparse-checkout: |
576576
.github/workflows/scripts/verify-dist-files-exist.sh
@@ -588,7 +588,7 @@ jobs:
588588
needs: [lint, unittest, integration-tests]
589589
if: (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/v')) && github.repository == 'open-telemetry/opentelemetry-collector-contrib'
590590
steps:
591-
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
591+
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
592592
- uses: ./.github/actions/setup-go-tools
593593
with:
594594
go-version: oldstable
@@ -625,7 +625,7 @@ jobs:
625625
permissions:
626626
contents: write
627627
steps:
628-
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
628+
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
629629
with:
630630
fetch-depth: 0
631631

@@ -710,7 +710,7 @@ jobs:
710710
permissions:
711711
issues: write
712712
steps:
713-
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
713+
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
714714
- uses: ./.github/actions/setup-go-tools
715715
with:
716716
go-version: oldstable

.github/workflows/changelog.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
PR_HEAD: ${{ github.event.pull_request.head.sha }}
3131

3232
steps:
33-
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
33+
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
3434
with:
3535
# Fetch complete history depth only if the PR is not a chore.
3636
fetch-depth: ${{ !contains(github.event.pull_request.labels.*.name, 'dependencies') && !contains(github.event.pull_request.labels.*.name, 'Skip Changelog') && !contains(github.event.pull_request.title, '[chore]') && '0' || '1' }}

0 commit comments

Comments
 (0)