Skip to content

Commit 5929e11

Browse files
Merge branch 'main' into feature/add-ibm-instana-exporter
2 parents 2bb8e28 + 2d38c8f commit 5929e11

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+2476
-36
lines changed

.github/dependabot.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ updates:
8282
- "/src/Instrumentation/Psr18"
8383
- "/src/Instrumentation/Psr3"
8484
- "/src/Instrumentation/Psr6"
85+
- "/src/Instrumentation/ReactPHP"
8586
- "/src/Instrumentation/Slim"
8687
- "/src/Instrumentation/Symfony"
8788
- "/src/Instrumentation/Wordpress"

.github/workflows/fossa.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
steps:
1515
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
1616

17-
- uses: fossas/fossa-action@c0a7d013f84c8ee5e910593186598625513cc1e4 # v1.6.0
17+
- uses: fossas/fossa-action@3ebcea1862c6ffbd5cf1b4d0bd6b3fe7bd6f2cac # v1.7.0
1818
with:
1919
api-key: ${{secrets.FOSSA_API_KEY}}
2020
team: OpenTelemetry

.github/workflows/ossf-scorecard.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
with:
2424
persist-credentials: false
2525

26-
- uses: ossf/scorecard-action@f49aabe0b5af0936a0987cfb85d86b75731b0186 # v2.4.1
26+
- uses: ossf/scorecard-action@05b42c624433fc40578a4040d5cf5e36ddca8cde # v2.4.2
2727
with:
2828
results_file: results.sarif
2929
results_format: sarif
@@ -42,6 +42,6 @@ jobs:
4242
# Upload the results to GitHub's code scanning dashboard (optional).
4343
# Commenting out will disable upload of results to your repo's Code Scanning dashboard
4444
- name: "Upload to code-scanning"
45-
uses: github/codeql-action/upload-sarif@60168efe1c415ce0f5521ea06d5c2062adbeed1b # v3.28.17
45+
uses: github/codeql-action/upload-sarif@fca7ace96b7d713c7035871441bd52efbe39e27e # v3.28.19
4646
with:
4747
sarif_file: results.sarif

.github/workflows/php.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ jobs:
2323
'Aws',
2424
'Context/Swoole',
2525
'Exporter/Instana',
26+
'Instrumentation/AwsSdk',
2627
'Instrumentation/CakePHP',
2728
'Instrumentation/CodeIgniter',
2829
'Instrumentation/Curl',
@@ -44,6 +45,7 @@ jobs:
4445
'Instrumentation/Psr15',
4546
'Instrumentation/Psr16',
4647
'Instrumentation/Psr18',
48+
'Instrumentation/ReactPHP',
4749
'Instrumentation/Slim',
4850
'Instrumentation/Symfony',
4951
'Instrumentation/Yii',

.gitsplit.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,8 @@ splits:
5050
target: "https://${GH_TOKEN}@github.com/opentelemetry-php/contrib-auto-psr16.git"
5151
- prefix: "src/Instrumentation/Psr18"
5252
target: "https://${GH_TOKEN}@github.com/opentelemetry-php/contrib-auto-psr18.git"
53+
- prefix: "src/Instrumentation/ReactPHP"
54+
target: "https://${GH_TOKEN}@github.com/opentelemetry-php/contrib-auto-reactphp.git"
5355
- prefix: "src/Instrumentation/Slim"
5456
target: "https://${GH_TOKEN}@github.com/opentelemetry-php/contrib-auto-slim.git"
5557
- prefix: "src/Instrumentation/Symfony"
@@ -62,6 +64,8 @@ splits:
6264
target: "https://${GH_TOKEN}@github.com/opentelemetry-php/contrib-auto-yii.git"
6365
- prefix: "src/Instrumentation/Doctrine"
6466
target: "https://${GH_TOKEN}@github.com/opentelemetry-php/contrib-auto-doctrine.git"
67+
- prefix: "src/Instrumentation/AwsSdk"
68+
target: "https://${GH_TOKEN}@github.com/opentelemetry-php/contrib-auto-aws-sdk.git"
6569
- prefix: "src/Context/Swoole"
6670
target: "https://${GH_TOKEN}@github.com/opentelemetry-php/context-swoole.git"
6771
- prefix: "src/AutoInstrumentationInstaller"

composer.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
"OpenTelemetry\\Contrib\\Instrumentation\\Psr3\\": "src/Instrumentation/Psr3/src",
3131
"OpenTelemetry\\Contrib\\Instrumentation\\Psr15\\": "src/Instrumentation/Psr15/src",
3232
"OpenTelemetry\\Contrib\\Instrumentation\\Psr18\\": "src/Instrumentation/Psr18/src",
33+
"OpenTelemetry\\Contrib\\Instrumentation\\ReactPHP\\": "src/Instrumentation/ReactPHP/src",
3334
"OpenTelemetry\\Contrib\\Instrumentation\\Slim\\": "src/Instrumentation/Slim/src",
3435
"OpenTelemetry\\Contrib\\Instrumentation\\Symfony\\": "src/Instrumentation/Symfony/src",
3536
"OpenTelemetry\\Contrib\\Instrumentation\\Wordpress\\": "src/Instrumentation/Wordpress/src",
@@ -55,6 +56,7 @@
5556
"src/Instrumentation/Psr3/_register.php",
5657
"src/Instrumentation/Psr15/_register.php",
5758
"src/Instrumentation/Psr18/_register.php",
59+
"src/Instrumentation/ReactPHP/_register.php",
5860
"src/Instrumentation/Slim/_register.php",
5961
"src/Instrumentation/Symfony/_register.php",
6062
"src/Instrumentation/Wordpress/_register.php",
@@ -82,6 +84,7 @@
8284
"open-telemetry/opentelemetry-auto-psr3": "self.version",
8385
"open-telemetry/opentelemetry-auto-psr15": "self.version",
8486
"open-telemetry/opentelemetry-auto-psr18": "self.version",
87+
"open-telemetry/opentelemetry-auto-reactphp": "self.version",
8588
"open-telemetry/opentelemetry-auto-slim": "self.version",
8689
"open-telemetry/opentelemetry-auto-symfony": "self.version",
8790
"open-telemetry/opentelemetry-auto-wordpress": "self.version",
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
* text=auto
2+
3+
*.md diff=markdown
4+
*.php diff=php
5+
6+
/.gitattributes export-ignore
7+
/.gitignore export-ignore
8+
/.php-cs-fixer.php export-ignore
9+
/phpstan.neon.dist export-ignore
10+
/phpunit.xml.dist export-ignore
11+
/psalm.xml.dist export-ignore
12+
/tests export-ignore
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/vendor/
2+
composer.lock

0 commit comments

Comments
 (0)