Skip to content

Commit 4a155d7

Browse files
Merge branch 'main' into sql-processor
2 parents 871e56d + 986777d commit 4a155d7

File tree

37 files changed

+686
-9
lines changed

37 files changed

+686
-9
lines changed

.github/workflows/ossf-scorecard.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,6 @@ jobs:
4343
# Upload the results to GitHub's code scanning dashboard (optional).
4444
# Commenting out will disable upload of results to your repo's Code Scanning dashboard
4545
- name: "Upload to code-scanning"
46-
uses: github/codeql-action/upload-sarif@3c3833e0f8c1c83d449a7478aa59c036a9165498 # v3.29.11
46+
uses: github/codeql-action/upload-sarif@192325c86100d080feab897ff886c34abd4c83a3 # v3.30.3
4747
with:
4848
sarif_file: results.sarif

.github/workflows/release-please.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
name: Process Release
2020
runs-on: ubuntu-latest
2121
steps:
22-
- uses: actions/create-github-app-token@a8d616148505b5069dccd32f177bb87d7f39123b # v2.1.1
22+
- uses: actions/create-github-app-token@def152b8a737443d7af6c5722c6389146fe90c90 # v2.1.2
2323
id: otelbot-token
2424
with:
2525
app-id: ${{ vars.OTELBOT_APP_ID }}

.github/workflows/release-request-weekly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
run: "gem install --no-document toys -v 0.15.5"
3030

3131
- name: Create otelbot app token
32-
uses: actions/[email protected].1
32+
uses: actions/[email protected].2
3333
id: app-token
3434
with:
3535
app-id: ${{ vars.OTELBOT_RUBY_CONTRIB_APP_ID }}

.github/workflows/release-request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
run: "gem install --no-document toys -v 0.15.5"
3434

3535
- name: Create otelbot app token
36-
uses: actions/[email protected].1
36+
uses: actions/[email protected].2
3737
id: app-token
3838
with:
3939
app-id: ${{ vars.OTELBOT_RUBY_CONTRIB_APP_ID }}

.github/workflows/stale.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818

1919
steps:
20-
- uses: actions/stale@v9
20+
- uses: actions/stale@v10
2121
name: Clean up stale issues and PRs
2222
with:
2323
repo-token: ${{ secrets.GITHUB_TOKEN }}

.toys/.data/releases.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,10 @@ commit_lint:
3030
# * changelog_path: Path to CHANGLEOG.md relative to the gem directory.
3131
# (Required only if it is not in the expected location.)
3232
gems:
33+
- name: opentelemetry-instrumentation-anthropic
34+
directory: instrumentation/anthropic
35+
version_constant: [OpenTelemetry, Instrumentation, Anthropic, VERSION]
36+
3337
- name: opentelemetry-instrumentation-active_storage
3438
directory: instrumentation/active_storage
3539
version_constant: [OpenTelemetry, Instrumentation, ActiveStorage, VERSION]

instrumentation/all/lib/opentelemetry/instrumentation/all.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
#
55
# SPDX-License-Identifier: Apache-2.0
66

7+
require 'opentelemetry-instrumentation-anthropic'
78
require 'opentelemetry-instrumentation-gruf'
89
require 'opentelemetry-instrumentation-trilogy'
910
require 'opentelemetry-instrumentation-active_support'

instrumentation/all/opentelemetry-instrumentation-all.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Gem::Specification.new do |spec|
4747
spec.add_dependency 'opentelemetry-instrumentation-lmdb', '~> 0.23.0'
4848
spec.add_dependency 'opentelemetry-instrumentation-mongo', '~> 0.23.0'
4949
spec.add_dependency 'opentelemetry-instrumentation-mysql2', '~> 0.29.0'
50-
spec.add_dependency 'opentelemetry-instrumentation-net_http', '~> 0.23.0'
50+
spec.add_dependency 'opentelemetry-instrumentation-net_http', '~> 0.24.0'
5151
spec.add_dependency 'opentelemetry-instrumentation-pg', '~> 0.30.0'
5252
spec.add_dependency 'opentelemetry-instrumentation-que', '~> 0.9.0'
5353
spec.add_dependency 'opentelemetry-instrumentation-racecar', '~> 0.4.0'
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
inherit_from: ../../.rubocop.yml
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
--no-private
2+
--title=OpenTelemetry Anthropic Instrumentation
3+
--markup=markdown
4+
--main=README.md
5+
./lib/opentelemetry/instrumentation/**/*.rb
6+
./lib/opentelemetry/instrumentation.rb
7+
-
8+
README.md
9+
CHANGELOG.md

0 commit comments

Comments
 (0)