Skip to content

Commit 495239f

Browse files
authored
Merge branch 'main' into docs/link-prom-setup
2 parents 616f5ac + 5afc25c commit 495239f

File tree

95 files changed

+3171
-3
lines changed

Some content is hidden

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

95 files changed

+3171
-3
lines changed

content/en/docs/languages/python/getting-started.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -507,9 +507,9 @@ def roll_dice():
507507
# This adds 1 to the counter for the given roll value
508508
roll_counter.add(1, {"roll.value": result})
509509
if player:
510-
logger.warn("%s is rolling the dice: %s", player, result)
510+
logger.warning("%s is rolling the dice: %s", player, result)
511511
else:
512-
logger.warn("Anonymous player is rolling the dice: %s", result)
512+
logger.warning("Anonymous player is rolling the dice: %s", result)
513513
return result
514514

515515
def roll():

data/community/members.yaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2018,6 +2018,12 @@ approvers:
20182018
- collector-triagers
20192019
html_url: https://github.com/jade-guiton-dd
20202020
avatar_url: https://avatars.githubusercontent.com/u/179536679?v=4
2021+
- name: JakeDern
2022+
teams:
2023+
- arrow-approvers
2024+
- arrow-triagers
2025+
html_url: https://github.com/JakeDern
2026+
avatar_url: https://avatars.githubusercontent.com/u/33842784?v=4
20212027
- name: JaredTan95
20222028
teams:
20232029
- collector-contrib-triagers
@@ -3121,6 +3127,9 @@ members:
31213127
- name: PaurushGarg
31223128
html_url: https://github.com/PaurushGarg
31233129
avatar_url: https://avatars.githubusercontent.com/u/62579325?v=4
3130+
- name: perk
3131+
html_url: https://github.com/perk
3132+
avatar_url: https://avatars.githubusercontent.com/u/1143849?v=4
31243133
- name: pirgeo
31253134
html_url: https://github.com/pirgeo
31263135
avatar_url: https://avatars.githubusercontent.com/u/78350108?v=4

data/registry-schema.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
"description": "The type of the entry. See https://opentelemetry.io/ecosystem/registry/adding/#registry-types for detailed definitions and usage guidelines for each type.",
1818
"enum": [
1919
"application integration",
20+
"connector",
2021
"core",
2122
"exporter",
2223
"extension",
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# cSpell:ignore countconnector
2+
title: Count Connector
3+
registryType: connector
4+
language: collector
5+
tags:
6+
- go
7+
- connector
8+
- collector
9+
license: Apache 2.0
10+
description:
11+
The `count` connector can be used to count spans, span events, metrics, data
12+
points, and log records.
13+
authors:
14+
- name: OpenTelemetry Authors
15+
urls:
16+
repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/connector/countconnector
17+
createdAt: 2025-03-26
18+
package:
19+
registry: go-collector
20+
name: github.com/open-telemetry/opentelemetry-collector-contrib/connector/countconnector
21+
version: v0.147.0
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# cSpell:ignore exceptionsconnector
2+
title: Exceptions Connector
3+
registryType: connector
4+
language: collector
5+
tags:
6+
- go
7+
- connector
8+
- collector
9+
license: Apache 2.0
10+
description:
11+
Generate metrics and logs from recorded [application
12+
exceptions](https://github.com/open-telemetry/semantic-conventions/blob/main/docs/exceptions/exceptions-spans.md/)
13+
associated with spans.
14+
authors:
15+
- name: OpenTelemetry Authors
16+
urls:
17+
repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/connector/exceptionsconnector
18+
createdAt: 2025-03-26
19+
package:
20+
registry: go-collector
21+
name: github.com/open-telemetry/opentelemetry-collector-contrib/connector/exceptionsconnector
22+
version: v0.147.0
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# cSpell:ignore failoverconnector
2+
title: Failover Connector
3+
registryType: connector
4+
language: collector
5+
tags:
6+
- go
7+
- connector
8+
- collector
9+
license: Apache 2.0
10+
description:
11+
Allows for health based routing between trace, metric, and log pipelines
12+
depending on the health of target downstream exporters.
13+
authors:
14+
- name: OpenTelemetry Authors
15+
urls:
16+
repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/connector/failoverconnector
17+
createdAt: 2025-03-26
18+
package:
19+
registry: go-collector
20+
name: github.com/open-telemetry/opentelemetry-collector-contrib/connector/failoverconnector
21+
version: v0.147.0
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# cSpell:ignore forwardconnector
2+
title: Forward Connector
3+
registryType: connector
4+
language: collector
5+
tags:
6+
- go
7+
- connector
8+
- collector
9+
license: Apache 2.0
10+
description:
11+
The `forward` connector can merge or fork pipelines of the same type.
12+
authors:
13+
- name: OpenTelemetry Authors
14+
urls:
15+
repo: https://github.com/open-telemetry/opentelemetry-collector/tree/main/connector/forwardconnector
16+
createdAt: 2025-03-26
17+
package:
18+
registry: go-collector
19+
name: go.opentelemetry.io/collector/connector/forwardconnector
20+
version: v0.147.0
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# cSpell:ignore grafanacloudconnector
2+
title: Grafana Cloud Connector
3+
registryType: connector
4+
language: collector
5+
tags:
6+
- go
7+
- connector
8+
- collector
9+
license: Apache 2.0
10+
description:
11+
The Grafana Cloud Connector analyzes telemetry in pipelines to generate usage
12+
metrics for Grafana Cloud products.
13+
authors:
14+
- name: OpenTelemetry Authors
15+
urls:
16+
repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/connector/grafanacloudconnector
17+
createdAt: 2025-03-26
18+
package:
19+
registry: go-collector
20+
name: github.com/open-telemetry/opentelemetry-collector-contrib/connector/grafanacloudconnector
21+
version: v0.147.0
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# cSpell:ignore metricsaslogsconnector
2+
title: Metrics as Logs Connector
3+
registryType: connector
4+
language: collector
5+
tags:
6+
- go
7+
- connector
8+
- collector
9+
license: Apache 2.0
10+
description:
11+
This connector converts OpenTelemetry metrics into logs, creating one log
12+
entry per metric data point. Each metric data point is transformed into a
13+
structured log record with configurable JSON body...
14+
authors:
15+
- name: OpenTelemetry Authors
16+
urls:
17+
repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/connector/metricsaslogsconnector
18+
createdAt: 2025-03-26
19+
package:
20+
registry: go-collector
21+
name: github.com/open-telemetry/opentelemetry-collector-contrib/connector/metricsaslogsconnector
22+
version: v0.147.0
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# cSpell:ignore otlpjson otlpjsonconnector
2+
title: OTLP JSON Connector
3+
registryType: connector
4+
language: collector
5+
tags:
6+
- go
7+
- connector
8+
- collector
9+
license: Apache 2.0
10+
description:
11+
Allows to extract otlpjson data from incoming Logs and specifically the `Body`
12+
field.
13+
authors:
14+
- name: OpenTelemetry Authors
15+
urls:
16+
repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/connector/otlpjsonconnector
17+
createdAt: 2025-03-26
18+
package:
19+
registry: go-collector
20+
name: github.com/open-telemetry/opentelemetry-collector-contrib/connector/otlpjsonconnector
21+
version: v0.147.0

0 commit comments

Comments
 (0)