Skip to content

Commit adb7216

Browse files
codebotenchalincartermp
authored
add console log export details for go (#4357)
Signed-off-by: Alex Boten <[email protected]> Co-authored-by: Patrice Chalin <[email protected]> Co-authored-by: Phillip Carter <[email protected]>
1 parent 8d7c40e commit adb7216

File tree

2 files changed

+24
-1
lines changed

2 files changed

+24
-1
lines changed

content/en/docs/languages/go/exporters.md

+20-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Exporters
33
aliases: [exporting_data]
44
weight: 50
55
# prettier-ignore
6-
cSpell:ignore: otlpmetric otlpmetricgrpc otlpmetrichttp otlptrace otlptracegrpc otlptracehttp promhttp stdouttrace
6+
cSpell:ignore: otlpmetric otlpmetricgrpc otlpmetrichttp otlptrace otlptracegrpc otlptracehttp promhttp stdoutlog stdouttrace
77
---
88

99
{{% docs/languages/exporters/intro go %}}
@@ -49,6 +49,25 @@ func newExporter() (metric.Exporter, error) {
4949
}
5050
```
5151

52+
### Console logs (Experimental) {#console-logs}
53+
54+
The
55+
[`go.opentelemetry.io/otel/exporters/stdout/stdoutlog`](https://pkg.go.dev/go.opentelemetry.io/otel/exporters/stdout/stdoutlog)
56+
package contains an implementation of the console log exporter.
57+
58+
Here's how you can create an exporter with default configuration:
59+
60+
```go
61+
import (
62+
"go.opentelemetry.io/otel/exporters/stdout/stdoutlog"
63+
"go.opentelemetry.io/otel/sdk/log"
64+
)
65+
66+
func newExporter() (log.Exporter, error) {
67+
return stdoutlog.New()
68+
}
69+
```
70+
5271
## OTLP
5372

5473
To send trace data to an OTLP endpoint (like the [collector](/docs/collector) or

static/refcache.json

+4
Original file line numberDiff line numberDiff line change
@@ -6875,6 +6875,10 @@
68756875
"StatusCode": 200,
68766876
"LastSeen": "2024-01-18T19:07:44.890589-05:00"
68776877
},
6878+
"https://pkg.go.dev/go.opentelemetry.io/otel/exporters/stdout/stdoutlog": {
6879+
"StatusCode": 200,
6880+
"LastSeen": "2024-04-24T13:46:14.851022-07:00"
6881+
},
68786882
"https://pkg.go.dev/go.opentelemetry.io/otel/exporters/stdout/stdoutmetric": {
68796883
"StatusCode": 200,
68806884
"LastSeen": "2024-01-30T15:25:21.196671-05:00"

0 commit comments

Comments
 (0)