File tree 2 files changed +24
-1
lines changed
content/en/docs/languages/go
2 files changed +24
-1
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ title: Exporters
3
3
aliases : [exporting_data]
4
4
weight : 50
5
5
# 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
7
7
---
8
8
9
9
{{% docs/languages/exporters/intro go %}}
@@ -49,6 +49,25 @@ func newExporter() (metric.Exporter, error) {
49
49
}
50
50
```
51
51
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
+
52
71
## OTLP
53
72
54
73
To send trace data to an OTLP endpoint (like the [ collector] ( /docs/collector ) or
Original file line number Diff line number Diff line change 6875
6875
"StatusCode" : 200 ,
6876
6876
"LastSeen" : " 2024-01-18T19:07:44.890589-05:00"
6877
6877
},
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
+ },
6878
6882
"https://pkg.go.dev/go.opentelemetry.io/otel/exporters/stdout/stdoutmetric" : {
6879
6883
"StatusCode" : 200 ,
6880
6884
"LastSeen" : " 2024-01-30T15:25:21.196671-05:00"
You can’t perform that action at this time.
0 commit comments