Skip to content

Commit 741eb80

Browse files
authored
Merge branch 'main' into internal-obs-2
2 parents c11de76 + 157a5e8 commit 741eb80

16 files changed

+775
-246
lines changed

archetypes/blog.md

+2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ author: >- # If you have only one author, then add the single name on this line
99
draft: true # TODO: remove this line once your post is ready to be published
1010
# canonical_url: http://somewhere.else/ # TODO: if this blog post has been posted somewhere else already, uncomment & provide the canonical URL here.
1111
body_class: otel-with-contributions-from # TODO: remove this line if there are no secondary contributing authors
12+
issue: the issue ID for this blog post # TODO: See https://opentelemetry.io/docs/contributing/blog/ for details
13+
sig: SIG Name # TODO: add the name of the SIG that sponsors this blog post
1214
---
1315

1416
<!-- If your post doesn't have secondary authors, then delete the following paragraph: -->

assets/scss/_styles_project.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@
184184
}
185185

186186
details {
187-
background-color: $gray-100;
187+
background-color: var(--bs-tertiary-bg);
188188
margin-bottom: 0.5em;
189189

190190
summary {

content/en/docs/contributing/blog.md

+36-15
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,25 @@ weight: 30
66

77
The [OpenTelemetry blog](/blog/) communicates new features, community reports,
88
and any news that might be relevant to the OpenTelemetry community. This
9-
includes end users and developers. Anyone can write a blog post and submit it
10-
for review.
9+
includes end users and developers. Anyone can write a blog post, read below what
10+
the requirements are.
11+
12+
## Documentation or blog post?
13+
14+
Before writing a blog post, ask yourself if your content also might be a good
15+
addition to the documentation. If the answer is "yes", create a new issue or
16+
pull request (PR) with your content to get it added to the docs.
17+
18+
Note, that the focus of maintainers and approvers of the OpenTelemetry Website
19+
is to improve the documentation of the project, so your blog post will have a
20+
lower priority for review.
1121

1222
## Before submitting a blog post
1323

1424
Blog posts should not be commercial in nature and should consist of original
15-
content that applies broadly to the OpenTelemetry community.
25+
content that applies broadly to the OpenTelemetry community. Blog posts should
26+
follow the policies outlined in the
27+
[Social Media Guide](https://github.com/open-telemetry/community/blob/main/social-media-guide.md).
1628

1729
Verify that your intended content broadly applies to the OpenTelemetry Community
1830
. Appropriate content includes:
@@ -27,15 +39,28 @@ Unsuitable content includes:
2739

2840
- Vendor product pitches
2941

30-
To submit a blog post,
42+
If your blog post fits into the list of appropriate content,
3143
[raise an issue](https://github.com/open-telemetry/opentelemetry.io/issues/new?title=New%20Blog%20Post:%20%3Ctitle%3E)
32-
with the title and a short description of your blog post. If you are not a
33-
[Member](https://github.com/open-telemetry/community/blob/main/community-membership.md#member),
34-
you also need to provide a _sponsor_ for your blog post, who is a Member (by
35-
that definition) and who is willing to provide a first review of your blog post.
36-
37-
If you do not raise an issue before providing your PR, we may request you to do
38-
so before providing a review.
44+
with the following details:
45+
46+
- Title of the blog post
47+
- Short description and outline of your blog post
48+
- If applicable, list the technologies used in your blog post. Make sure that
49+
all of them are open source, and prefer CNCF projects over non-CNCF projects
50+
(e.g. use Jaeger for trace visualization, and Prometheus for metric
51+
visualization)
52+
- Name of a [SIG](https://github.com/open-telemetry/community/), which is
53+
related to this blog post
54+
- Name of a sponsor (maintainer or approver) from this SIG, who will help to
55+
review that PR
56+
57+
Maintainers of SIG Communication will verify, that your blog post satisfies all
58+
the requirements for being accepted. If you can not name a SIG/sponsor in your
59+
initial issue details, they will also point you to an appropriate SIG, you can
60+
reach out to for sponsorship.
61+
62+
If your issue has everything needed, a maintainer will verify that you can go
63+
ahead and submit your blog post.
3964

4065
## Submit a blog post
4166

@@ -44,10 +69,6 @@ locally or by using the GitHub UI. In both cases we ask you to follow the
4469
instructions provided by the
4570
[blog post template](https://github.com/open-telemetry/opentelemetry.io/tree/main/archetypes/blog.md).
4671

47-
**Note**: Before writing a blog post, ask yourself if your content also might be
48-
a good addition to the documentation. If the answer is "yes", create a new issue
49-
or pull request (PR) with your content to get it added to the docs.
50-
5172
### Fork and write locally
5273

5374
After you've set up the local fork you can create a blog post using a template.

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

+166-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ aliases:
55
- manual_instrumentation
66
weight: 30
77
description: Manual instrumentation for OpenTelemetry Go
8-
cSpell:ignore: fatalf otlptrace sdktrace sighup
8+
cSpell:ignore: fatalf logr logrus otelslog otlplog otlploghttp sdktrace sighup
99
---
1010

1111
{{% docs/languages/instrumentation-intro %}}
@@ -37,7 +37,6 @@ import (
3737
"log"
3838

3939
"go.opentelemetry.io/otel"
40-
"go.opentelemetry.io/otel/exporters/otlp/otlptrace"
4140
"go.opentelemetry.io/otel/sdk/resource"
4241
sdktrace "go.opentelemetry.io/otel/sdk/trace"
4342
semconv "go.opentelemetry.io/otel/semconv/v1.21.0"
@@ -876,7 +875,161 @@ meterProvider := metric.NewMeterProvider(
876875

877876
## Logs
878877

879-
The logs API is currently unstable, documentation TBA.
878+
Logs are distinct from metrics and traces in that **there is no user-facing
879+
OpenTelemetry logs API**. Instead, there is tooling to bridge logs from existing
880+
popular log packages (such as slog, logrus, zap, logr) into the OpenTelemetry
881+
ecosystem. For rationale behind this design decision, see
882+
[Logging specification](/docs/specs/otel/logs/).
883+
884+
The two typical workflows discussed below each cater to different application
885+
requirements.
886+
887+
### Direct-to-Collector
888+
889+
**Status**: [Experimental](/docs/specs/otel/document-status/)
890+
891+
In the direct-to-Collector workflow, logs are emitted directly from an
892+
application to a collector using a network protocol (e.g. OTLP). This workflow
893+
is simple to set up as it doesn't require any additional log forwarding
894+
components, and allows an application to easily emit structured logs that
895+
conform to the [log data model][log data model]. However, the overhead required
896+
for applications to queue and export logs to a network location may not be
897+
suitable for all applications.
898+
899+
To use this workflow:
900+
901+
- Configure the OpenTelemetry [Log SDK](#logs-sdk) to export log records to
902+
desired target destination (the [collector][opentelemetry collector] or
903+
other).
904+
- Use an appropriate [Log Bridge](#log-bridge).
905+
906+
#### Logs SDK
907+
908+
The logs SDK dictates how logs are processed when using the
909+
[direct-to-Collector](#direct-to-collector) workflow. No log SDK is needed when
910+
using the [log forwarding](#via-file-or-stdout) workflow.
911+
912+
The typical log SDK configuration installs a batching log record processor with
913+
an OTLP exporter.
914+
915+
To enable [logs](/docs/concepts/signals/logs/) in your app, you'll need to have
916+
an initialized [`LoggerProvider`](/docs/concepts/signals/logs/#logger-provider)
917+
that will let you use a [Log Bridge](#log-bridge).
918+
919+
If a `LoggerProvider` is not created, the OpenTelemetry APIs for logs will use a
920+
no-op implementation and fail to generate data. Therefore, you have to modify
921+
the source code to include the SDK initialization code using the following
922+
packages:
923+
924+
- [`go.opentelemetry.io/otel`][]
925+
- [`go.opentelemetry.io/otel/sdk/log`][]
926+
- [`go.opentelemetry.io/otel/sdk/resource`][]
927+
- [`go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp`][]
928+
929+
Ensure you have the right Go modules installed:
930+
931+
```sh
932+
go get go.opentelemetry.io/otel \
933+
go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp \
934+
go.opentelemetry.io/otel/sdk \
935+
go.opentelemetry.io/otel/sdk/log
936+
```
937+
938+
Then initialize a logger provider:
939+
940+
```go
941+
package main
942+
943+
import (
944+
"context"
945+
"fmt"
946+
947+
"go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp"
948+
"go.opentelemetry.io/otel/log/global"
949+
"go.opentelemetry.io/otel/sdk/log"
950+
"go.opentelemetry.io/otel/sdk/resource"
951+
semconv "go.opentelemetry.io/otel/semconv/v1.21.0"
952+
)
953+
954+
func main() {
955+
ctx := context.Background()
956+
957+
// Create resource.
958+
res, err := newResource()
959+
if err != nil {
960+
panic(err)
961+
}
962+
963+
// Create a logger provider.
964+
// You can pass this instance directly when creating bridges.
965+
loggerProvider, err := newLoggerProvider(ctx, res)
966+
if err != nil {
967+
panic(err)
968+
}
969+
970+
// Handle shutdown properly so nothing leaks.
971+
defer func() {
972+
if err := loggerProvider.Shutdown(ctx); err != nil {
973+
fmt.Println(err)
974+
}
975+
}()
976+
977+
// Register as global logger provider so that it can be accessed global.LoggerProvider.
978+
// Most log bridges use the global logger provider as default.
979+
// If the global logger provider is not set then a no-op implementation
980+
// is used, which fails to generate data.
981+
global.SetLoggerProvider(loggerProvider)
982+
}
983+
984+
func newResource() (*resource.Resource, error) {
985+
return resource.Merge(resource.Default(),
986+
resource.NewWithAttributes(semconv.SchemaURL,
987+
semconv.ServiceName("my-service"),
988+
semconv.ServiceVersion("0.1.0"),
989+
))
990+
}
991+
992+
func newLoggerProvider(ctx context.Context, res *resource.Resource) (*log.LoggerProvider, error) {
993+
exporter, err := otlploghttp.New(ctx)
994+
if err != nil {
995+
return nil, err
996+
}
997+
processor := log.NewBatchProcessor(exporter)
998+
provider := log.NewLoggerProvider(
999+
log.WithResource(res),
1000+
log.WithProcessor(processor),
1001+
)
1002+
return provider, nil
1003+
}
1004+
```
1005+
1006+
Now that a `LoggerProvider` is configured, you can use it to set up a
1007+
[Log Bridge](#log-bridge).
1008+
1009+
#### Log Bridge
1010+
1011+
A log bridge is a component that bridges logs from an existing log package into
1012+
the OpenTelemetry [Log SDK](#logs-sdk) using the [Logs Bridge
1013+
API][logs bridge API]. Log bridges are available for various popular Go log
1014+
packages:
1015+
1016+
- [logrus bridge][otellogrus]
1017+
- [slog bridge][otelslog]
1018+
1019+
The links above contain full usage and installation documentation.
1020+
1021+
### Via file or stdout
1022+
1023+
In the file or stdout workflow, logs are written to files or standout output.
1024+
Another component (e.g. FluentBit) is responsible for reading / tailing the
1025+
logs, parsing them to more structured format, and forwarding them a target, such
1026+
as the collector. This workflow may be preferable in situations where
1027+
application requirements do not permit additional overhead from
1028+
[direct-to-Collector](#direct-to-collector). However, it requires that all log
1029+
fields required down stream are encoded into the logs, and that the component
1030+
reading the logs parse the data into the [log data model][log data model]. The
1031+
installation and configuration of log forwarding components is outside the scope
1032+
of this document.
8801033

8811034
## Next Steps
8821035

@@ -887,11 +1040,21 @@ telemetry backends.
8871040
[opentelemetry specification]: /docs/specs/otel/
8881041
[trace semantic conventions]: /docs/specs/semconv/general/trace/
8891042
[instrumentation library]: ../libraries/
1043+
[opentelemetry collector]:
1044+
https://github.com/open-telemetry/opentelemetry-collector
1045+
[logs bridge API]: /docs/specs/otel/logs/bridge-api
1046+
[log data model]: /docs/specs/otel/logs/data-model
1047+
[otellogrus]: https://pkg.go.dev/go.opentelemetry.io/contrib/bridges/otellogrus
1048+
[otelslog]: https://pkg.go.dev/go.opentelemetry.io/contrib/bridges/otelslog
8901049
[`go.opentelemetry.io/otel`]: https://pkg.go.dev/go.opentelemetry.io/otel
8911050
[`go.opentelemetry.io/otel/exporters/stdout/stdoutmetric`]:
8921051
https://pkg.go.dev/go.opentelemetry.io/otel/exporters/stdout/stdoutmetric
8931052
[`go.opentelemetry.io/otel/metric`]:
8941053
https://pkg.go.dev/go.opentelemetry.io/otel/metric
1054+
[`go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp`]:
1055+
https://pkg.go.dev/go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp
1056+
[`go.opentelemetry.io/otel/sdk/log`]:
1057+
https://pkg.go.dev/go.opentelemetry.io/otel/sdk/log
8951058
[`go.opentelemetry.io/otel/sdk/metric`]:
8961059
https://pkg.go.dev/go.opentelemetry.io/otel/sdk/metric
8971060
[`go.opentelemetry.io/otel/sdk/resource`]:

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ cSpell:ignore: sdktrace thirdparty
66

77
{{% docs/languages/resources-intro %}}
88

9-
Resources should be assigned to a tracer provider at its initialization, and are
10-
created much like attributes:
9+
Resources should be assigned to a tracer, meter, and logger provider at its
10+
initialization, and are created much like attributes:
1111

1212
```go
1313
res := resource.NewWithAttributes(

0 commit comments

Comments
 (0)