Skip to content

Commit af95073

Browse files
authored
Merge branch 'main' into opentelemetrybot/auto-update-opentelemetry-java-instrumentation-v2.14.0
2 parents 63f299a + 980b6f4 commit af95073

30 files changed

+101
-37
lines changed

content/en/docs/zero-code/java/agent/annotations.md

+19
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,25 @@ types listed below, then the span will not be ended until the future completes.
8080
- [io.reactivex.Flowable](https://reactivex.io/RxJava/2.x/javadoc/index.html?io/reactivex/Flowable.html)
8181
- [io.reactivex.parallel.ParallelFlowable](https://reactivex.io/RxJava/2.x/javadoc/index.html?io/reactivex/parallel/ParallelFlowable.html)
8282

83+
### Parameters
84+
85+
The `@WithSpan` attribute supports the following optional parameters to allow
86+
customization of spans:
87+
88+
| name | type | default | description |
89+
| ---------------- | ----------------- | ---------- | -------------------------------------------------------------------------------------------------------------------------------------------- |
90+
| `kind` | `SpanKind` (enum) | `INTERNAL` | The [kind of span](/docs/specs/otel/trace/api/#spankind). |
91+
| `inheritContext` | `boolean` | `true` | Since 2.14.0. Controls whether or not the new span will be parented in the existing (current) context. If `false`, a new context is created. |
92+
93+
Example parameter usage:
94+
95+
```java
96+
@WithSpan(kind = SpanKind.CLIENT, inheritContext = false)
97+
public void myMethod() {
98+
<...>
99+
}
100+
```
101+
83102
## Adding attributes to the span with `@SpanAttribute`
84103

85104
When a [span](/docs/concepts/signals/traces/#spans) is created for an annotated

content/ja/blog/2025/ai-agent-observability/index.md

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ issue: https://github.com/open-telemetry/opentelemetry.io/issues/6389
88
sig: SIG GenAI Observability
99
date: 2025-03-06
1010
default_lang_commit: f2a520b85d72db706bff91d879f5bb10fd2e7367
11+
drifted_from_default: true
1112
cSpell:ignore: genai Guangya PydanticAI Sujay
1213
---
1314

content/ja/docs/collector/deployment/agent.md

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ title: エージェント
33
description: コレクターにシグナルを送信し、そこからバックエンドに送信する理由と方法
44
weight: 2
55
default_lang_commit: b34ebe22b71962da96b898eb39a666ed57d447fe
6+
drifted_from_default: true
67
cSpell:ignore: prometheusremotewrite
78
---
89

content/ja/docs/collector/deployment/gateway/index.md

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ title: ゲートウェイ
33
description: シグナルを単一のOTLPエンドポイントに送信し、そこからバックエンドに送信する理由と方法
44
weight: 3
55
default_lang_commit: b34ebe22b71962da96b898eb39a666ed57d447fe
6+
drifted_from_default: true
67
# prettier-ignore
78
cSpell:ignore: filelogreceiver hostmetricsreceiver hostnames loadbalancer loadbalancing resourcedetectionprocessor
89
---

content/ja/docs/what-is-opentelemetry.md

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ title: OpenTelemetryとは
33
description: OpenTelemetryが何であり、何でないかについての簡単な説明。
44
weight: 150
55
default_lang_commit: 44059882
6+
drifted_from_default: true
67
---
78

89
- OpenTelemetryは、[オブザーバビリティ](/docs/concepts/observability-primer/#what-is-observability)フレームワークであり、[トレース](/docs/concepts/signals/traces/)[メトリクス](/docs/concepts/signals/metrics/)[ログ](/docs/concepts/signals/logs/)のようなテレメトリーデータを作成・管理するためにデザインされたツールキットです。

content/pt/docs/concepts/instrumentation/_index.md

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ title: Instrumentação
33
description: Como o OpenTelemetry facilita a instrumentação
44
weight: 15
55
default_lang_commit: 82bd738d51426acb34e126b230a8a1281f193e3e
6+
drifted_from_default: true
67
---
78

89
Para que um sistema seja observável, ele deve ser **instrumentado**: ou seja, o

data/registry/instrumentation-js-cerbos.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@ createdAt: 2023-09-13
2121
package:
2222
name: '@cerbos/opentelemetry'
2323
registry: npm
24-
version: 0.5.8
24+
version: 0.5.9
2525
isFirstParty: true

data/registry/instrumentation-php-cakephp.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@ createdAt: 2024-07-08
1818
package:
1919
registry: packagist
2020
name: open-telemetry/opentelemetry-auto-cakephp
21-
version: 0.0.3
21+
version: 0.0.4
2222
isFirstParty: false

data/registry/instrumentation-php-codeigniter.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ createdAt: 2023-05-22
1616
package:
1717
registry: packagist
1818
name: open-telemetry/opentelemetry-auto-codeigniter
19-
version: 0.0.8
19+
version: 0.0.9
2020
isFirstParty: false

data/registry/instrumentation-php-curl.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ createdAt: 2024-11-18
1919
package:
2020
registry: packagist
2121
name: open-telemetry/opentelemetry-auto-curl
22-
version: 0.0.2
22+
version: 0.0.3
2323
isFirstParty: false

data/registry/instrumentation-php-extamqp.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ createdAt: 2024-01-19
1616
package:
1717
registry: packagist
1818
name: open-telemetry/opentelemetry-auto-ext-amqp
19-
version: 0.0.4
19+
version: 0.0.5
2020
isFirstParty: false

data/registry/instrumentation-php-extrdkafka.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@ createdAt: 2024-11-18
2020
package:
2121
registry: packagist
2222
name: open-telemetry/opentelemetry-auto-ext-rdkafka
23-
version: 0.0.1
23+
version: 0.0.2
2424
isFirstParty: false

data/registry/instrumentation-php-guzzle.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ createdAt: 2024-01-19
1515
package:
1616
registry: packagist
1717
name: open-telemetry/opentelemetry-auto-guzzle
18-
version: 1.0.1
18+
version: 1.1.0
1919
isFirstParty: false

data/registry/instrumentation-php-httpasyncclient.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ createdAt: 2023-05-22
1616
package:
1717
registry: packagist
1818
name: open-telemetry/opentelemetry-auto-http-async
19-
version: 1.0.1
19+
version: 1.1.0
2020
isFirstParty: false

data/registry/instrumentation-php-io.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ createdAt: 2023-05-22
1515
package:
1616
registry: packagist
1717
name: open-telemetry/opentelemetry-auto-io
18-
version: 0.0.12
18+
version: 0.0.13
1919
isFirstParty: false

data/registry/instrumentation-php-mongodb.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ createdAt: 2023-08-08
1717
package:
1818
registry: packagist
1919
name: open-telemetry/opentelemetry-auto-mongodb
20-
version: 0.0.7
20+
version: 0.0.8
2121
isFirstParty: false

data/registry/instrumentation-php-openaiphp.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ createdAt: 2024-02-05
1919
package:
2020
registry: packagist
2121
name: open-telemetry/opentelemetry-auto-openai-php
22-
version: 0.0.2
22+
version: 0.0.3
2323
isFirstParty: false

data/registry/instrumentation-php-pdo.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ createdAt: 2023-05-22
1515
package:
1616
registry: packagist
1717
name: open-telemetry/opentelemetry-auto-pdo
18-
version: 0.0.17
18+
version: 0.0.18
1919
isFirstParty: false

data/registry/instrumentation-php-psr14.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ createdAt: 2024-01-19
1717
package:
1818
registry: packagist
1919
name: open-telemetry/opentelemetry-auto-psr14
20-
version: 0.0.3
20+
version: 0.0.4
2121
isFirstParty: false

data/registry/instrumentation-php-psr15.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ createdAt: 2022-12-14
1515
package:
1616
registry: packagist
1717
name: open-telemetry/opentelemetry-auto-psr15
18-
version: 1.0.6
18+
version: 1.1.0
1919
isFirstParty: false

data/registry/instrumentation-php-psr16.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ createdAt: 2024-04-18
1717
package:
1818
registry: packagist
1919
name: open-telemetry/opentelemetry-auto-psr16
20-
version: 0.0.3
20+
version: 0.0.4
2121
isFirstParty: false

data/registry/instrumentation-php-psr18.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ createdAt: 2022-12-14
1616
package:
1717
registry: packagist
1818
name: open-telemetry/opentelemetry-auto-psr18
19-
version: 1.0.4
19+
version: 1.1.0
2020
isFirstParty: false

data/registry/instrumentation-php-psr3.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ createdAt: 2023-07-10
1717
package:
1818
registry: packagist
1919
name: open-telemetry/opentelemetry-auto-psr3
20-
version: 0.0.8
20+
version: 0.0.9
2121
isFirstParty: false

data/registry/instrumentation-php-psr6.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ createdAt: 2024-07-08
1717
package:
1818
registry: packagist
1919
name: open-telemetry/opentelemetry-auto-psr6
20-
version: 0.0.3
20+
version: 0.0.4
2121
isFirstParty: false

data/registry/instrumentation-php-slim.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ createdAt: 2022-12-14
1515
package:
1616
registry: packagist
1717
name: open-telemetry/opentelemetry-auto-slim
18-
version: 1.0.7
18+
version: 1.1.0
1919
isFirstParty: false

data/registry/instrumentation-php-symfony.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ createdAt: 2023-05-22
1515
package:
1616
registry: packagist
1717
name: open-telemetry/opentelemetry-auto-symfony
18-
version: 1.0.0beta30
18+
version: 1.0.0
1919
isFirstParty: false

data/registry/instrumentation-php-wordpress.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ createdAt: 2023-05-22
1515
package:
1616
registry: packagist
1717
name: open-telemetry/opentelemetry-auto-wordpress
18-
version: 0.0.16
18+
version: 0.0.17
1919
isFirstParty: false

data/registry/instrumentation-php-yii.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ createdAt: 2022-12-14
1414
package:
1515
registry: packagist
1616
name: open-telemetry/opentelemetry-auto-yii
17-
version: 0.0.5
17+
version: 0.0.6
1818
isFirstParty: false

data/registry/tools-dotnet-purview-telemetry-sourcegenerator.yml

+31-15
Original file line numberDiff line numberDiff line change
@@ -6,32 +6,48 @@ tags:
66
- c#
77
- .net
88
- dotnet
9-
- source-generator
10-
- activities
11-
- logging
9+
- aspnet
1210
- logs
13-
- events
14-
- metrics
15-
- spans
16-
- attributes
17-
- tags
18-
- baggage
19-
- telemetry
11+
- log
12+
- logger
13+
- logging
14+
- source-generator
2015
- high-performance-logging
16+
- otel
17+
- open-telemetry
18+
- telemetry
19+
- traces
2120
- tracing
21+
- metric
22+
- metrics
23+
- meter
24+
- meters
25+
- instrumentation
26+
- instruments
27+
- events
28+
- distributed-traces
2229
- distributed-tracing
23-
- dependency-injection
30+
- melt
2431
- purview
25-
- nuget
2632
license: MIT
2733
description:
28-
Generates ActivitySource, Activity, ActivityEvent, High-performance logging
29-
(ILogger) and Metrics based on methods on an interface, enabling fast
30-
iteration cycles and substitutes for testing through dependency injection.
34+
'Generates
35+
[ActivitySource](https://learn.microsoft.com/en-us/dotnet/api/system.diagnostics.activitysource),
36+
[ILogger](https://learn.microsoft.com/en-us/dotnet/api/microsoft.extensions.logging.ilogger),
37+
and
38+
[Metrics](https://learn.microsoft.com/en-us/dotnet/api/system.diagnostics.metrics)
39+
based telemetry from methods you define on an interface.<br /> <br /> This
40+
approach allows for:<br /> - Faster iteration cycles - simply create the
41+
method on your interface and the implementation will be automatically
42+
generated<br /> - Easy mocking/ substitution for testing - a full sample
43+
project, including tests can be found
44+
[here](https://github.com/purview-dev/purview-telemetry-sourcegenerator/tree/main/samples/SampleApp)<br
45+
/> - Built-in dependency injection helper generation'
3146
authors:
3247
- name: Kieron Lanning
3348
url: https://github.com/kieronlanning
3449
urls:
50+
website: https://github.com/purview-dev/purview-telemetry-sourcegenerator/wiki
3551
repo: https://github.com/purview-dev/purview-telemetry-sourcegenerator/
3652
docs: https://github.com/purview-dev/purview-telemetry-sourcegenerator/blob/main/README.md
3753
createdAt: 2024-04-26

static/refcache.json

+24
Original file line numberDiff line numberDiff line change
@@ -9739,6 +9739,10 @@
97399739
"StatusCode": 206,
97409740
"LastSeen": "2025-02-06T02:17:59.999Z"
97419741
},
9742+
"https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/trace/api.md#spankind": {
9743+
"StatusCode": 206,
9744+
"LastSeen": "2025-03-13T17:21:15.569829279Z"
9745+
},
97429746
"https://github.com/open-telemetry/opentelemetry-specification/blob/v1.14.0/specification/sdk-environment-variables.md#general-sdk-configuration": {
97439747
"StatusCode": 200,
97449748
"LastSeen": "2025-02-06T02:17:12.345Z"
@@ -12247,6 +12251,14 @@
1224712251
"StatusCode": 206,
1224812252
"LastSeen": "2025-01-16T11:40:52.473775-05:00"
1224912253
},
12254+
"https://github.com/purview-dev/purview-telemetry-sourcegenerator/tree/main/samples/SampleApp": {
12255+
"StatusCode": 206,
12256+
"LastSeen": "2025-03-14T10:04:55.39722679Z"
12257+
},
12258+
"https://github.com/purview-dev/purview-telemetry-sourcegenerator/wiki": {
12259+
"StatusCode": 206,
12260+
"LastSeen": "2025-03-14T10:04:55.71535952Z"
12261+
},
1225012262
"https://github.com/pyohannes": {
1225112263
"StatusCode": 206,
1225212264
"LastSeen": "2025-02-02T10:41:25.960943-05:00"
@@ -13895,6 +13907,18 @@
1389513907
"StatusCode": 206,
1389613908
"LastSeen": "2025-02-01T06:58:04.411013-05:00"
1389713909
},
13910+
"https://learn.microsoft.com/en-us/dotnet/api/microsoft.extensions.logging.ilogger": {
13911+
"StatusCode": 206,
13912+
"LastSeen": "2025-03-14T10:04:54.552538273Z"
13913+
},
13914+
"https://learn.microsoft.com/en-us/dotnet/api/system.diagnostics.activitysource": {
13915+
"StatusCode": 200,
13916+
"LastSeen": "2025-03-14T10:04:53.921752353Z"
13917+
},
13918+
"https://learn.microsoft.com/en-us/dotnet/api/system.diagnostics.metrics": {
13919+
"StatusCode": 200,
13920+
"LastSeen": "2025-03-14T10:04:54.95919053Z"
13921+
},
1389813922
"https://learn.microsoft.com/en-us/dotnet/api/system.reflection.assembly.getentryassembly": {
1389913923
"StatusCode": 200,
1390013924
"LastSeen": "2025-01-30T14:41:04.756369-05:00"

0 commit comments

Comments
 (0)