Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 9cf717a

Browse files
authoredSep 30, 2024··
Merge branch 'main' into michael2893-update-collector-docs-gateway
2 parents f9f7ff3 + 74549da commit 9cf717a

File tree

20 files changed

+234
-120
lines changed

20 files changed

+234
-120
lines changed
 

‎.htmltest.yml

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ CheckMailto: false
88
TestFilesConcurrently: true
99
IgnoreDirs:
1010
- ^blog/(\d+/)?page/\d+
11+
# TODO drop after https://github.com/open-telemetry/opentelemetry.io/issues/5267 is fixed:
12+
- zh/docs/contributing/pr-checks
1113
IgnoreInternalURLs: # list of paths
1214
IgnoreURLs: # list of regexs of paths or URLs to be ignored
1315
- ^((/..)?/docs/languages/\w+|\.\.)/(api|examples|registry)/$

‎content/en/blog/2023/otel-arrow/index.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ repository that supports this protocol. This protocol, designed to complement
2424
the OTLP protocol in situations with substantial telemetry data volumes, has
2525
been under discussion and development for two years. It represents a
2626
collaborative effort between [F5](https://f5.com),
27-
[ServiceNow Cloud Observability](https://www.servicenow.com/products/observability.html)
28-
, and numerous technical leaders from the OpenTelemetry community (see
27+
[ServiceNow Cloud Observability](https://www.servicenow.com/products/observability.html),
28+
and numerous technical leaders from the OpenTelemetry community (see
2929
[donation](https://github.com/open-telemetry/community/issues/1332)). The
3030
compression benefits are significant, demonstrating a **40% improvement
3131
compression efficiency** for the majority of workloads and even greater

‎content/en/blog/2024/otel-arrow-production/index.md

+7-8
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,9 @@
22
title: OpenTelemetry Protocol with Apache Arrow in Production
33
linkTitle: OpenTelemetry Arrow in Production
44
date: 2024-09-25
5-
author:
6-
>- # If you have only one author, then add the single name on this line in quotes.
7-
[Joshua MacDonald](https://github.com/jmacd) (ServiceNow, Inc), [Laurent
8-
Querel](https://github.com/lquerel) (F5, Inc)
5+
author: >-
6+
[Joshua MacDonald](https://github.com/jmacd) (ServiceNow), [Laurent
7+
Querel](https://github.com/lquerel) (F5)
98
cSpell:ignore: Querel Zstd
109
issue: 5193
1110
sig: OpenTelemetry Arrow
@@ -54,8 +53,8 @@ OpenTelemetry Collectors.
5453
The compression bridge consists of two OpenTelemetry Collectors labeled exporter
5554
and receiver, or they could equally be two pools of load-balanced collectors.
5655

57-
As described in this
58-
["OTEP" design document](https://github.com/open-telemetry/oteps/blob/main/text/0156-columnar-encoding.md#mapping-otel-entities-to-arrow-records),
56+
As described in the
57+
[OTEP 0156 design document](https://github.com/open-telemetry/oteps/blob/main/text/0156-columnar-encoding.md#mapping-otel-entities-to-arrow-records),
5958
the exporter converts arbitrary OpenTelemetry data into an Arrow record batch.
6059
The Arrow record batch is a block of memory, with a standardized layout, making
6160
it possible to exchange data across address spaces and virtual process
@@ -224,7 +223,7 @@ giving them an opportunity to retry on another connection, and it gives the
224223
service operator a chance to auto-scale the number of instances to handle the
225224
increase in load based on memory utilization.
226225
227-
See the
226+
For details, see the
228227
[documentation on batching and back-pressure](https://github.com/open-telemetry/opentelemetry-collector-contrib/blob/main/exporter/otelarrowexporter/README.md#batching-configuration)
229228
for the OTel-Arrow exporter.
230229
@@ -246,7 +245,7 @@ the OpenTelemetry standard OTLP over gRPC, with round-robin load balancing. The
246245
gateway collectors apply a variety of processors, including the concurrent batch
247246
processor described above, followed by the OTel-Arrow exporter.
248247
249-
![A pool of gateway collectors sends to a load balancer, then to a backend service.](./setup.png)
248+
![A pool of gateway collectors sends to a load balancer, then to a backend service.](setup.png)
250249
251250
On the other side of the bridge, a pool of Envoy load balancers distributes the
252251
streams across a pool of collectors running the OTel-Arrow receiver, after

‎content/en/docs/collector/custom-collector.md

+9-4
Original file line numberDiff line numberDiff line change
@@ -120,8 +120,6 @@ the development and testing of components.
120120
Go ahead and create a manifest file named `builder-config.yaml` with the
121121
following content:
122122

123-
> builder-config.yaml
124-
125123
```yaml
126124
dist:
127125
name: otelcol-dev
@@ -144,8 +142,6 @@ collector distribution:
144142
The `builder-config.yaml` manifest file will look like this after adding the
145143
components:
146144

147-
> builder-config.yaml
148-
149145
<!-- prettier-ignore -->
150146
```yaml
151147
dist:
@@ -170,6 +166,15 @@ receivers:
170166
go.opentelemetry.io/collector/receiver/otlpreceiver {{% version-from-registry collector-receiver-otlp %}}
171167
```
172168
169+
{{% alert color="primary" title="Tip" %}}
170+
171+
For a list of components that you can add to your custom collector, see the
172+
[OpenTelemetry Registry](/ecosystem/registry/?language=collector). Note that
173+
registry entries provide the full name and version you need to add to your
174+
`builder-config.yaml`.
175+
176+
{{% /alert %}}
177+
173178
## Step 3 - Generating the Code and Building your Collector's distribution
174179

175180
All you need now is to let the `ocb` do it's job, so go to your terminal and
+39-16
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,52 @@
11
---
22
title: Contributing
3-
description: Learn how to contribute to OpenTelemetry documentation.
43
aliases: [/docs/contribution-guidelines]
54
weight: 980
65
---
76

7+
Thanks for your interest in contributing to the OpenTelemetry docs and website.
8+
9+
## Jump right in!
10+
11+
What do you want to do?
12+
13+
- Correct a **typo or other quick fixes**, see
14+
[Submitting content using GitHub](pull-requests/#changes-using-github)
15+
- For more significant contributions, read the pages in this section starting
16+
with:
17+
- [Prerequisites]
18+
- [Issues]
19+
- [Submitting content]
20+
21+
[Prerequisites]: prerequisites/
22+
[Issues]: issues/
23+
[Submitting content]: pull-requests/
24+
25+
{{% alert title="<i class='far fa-exclamation-triangle'></i> First time contributing? " %}}
26+
27+
Eager first-time contributors, see
28+
[Fixing an existing issue](issues/#fixing-an-existing-issue) for important
29+
guidance.
30+
31+
{{% /alert %}}
32+
33+
## What can I contribute to?
34+
835
OpenTelemetry documentation contributors:
936

10-
- Improve existing content.
11-
- Create new content.
12-
- Update the OpenTelemetry Registry.
13-
- Improve the code that builds the site.
37+
- Improve existing or create new content
38+
- [Submit a blog post](blog/) or case study
39+
- Add to or update the [OpenTelemetry Registry](/ecosystem/registry/)
40+
- Improve the code that builds the site
1441

15-
The following guides describe how to contribute to OpenTelemetry documentation.
42+
The pages in this section describe how to contribute to OpenTelemetry
43+
**documentation**.
1644

1745
For guidance on how to contribute to the OpenTelemetry project in general, see
18-
the
19-
[OpenTelemetry Contributor Guide](https://github.com/open-telemetry/community/blob/main/guides/contributor/README.md)
20-
, which provides details on the Contributor License Agreement and the Code of
21-
Conduct. Every language implementation, Collector, and conventions
22-
[repository](https://github.com/open-telemetry/) has its own specific
46+
the community [OpenTelemetry New Contributor Guide]. Every [OTel repository][org]
47+
for language implementations, the Collector, and conventions have their own project-specific
2348
contributing guides.
2449

25-
## Other ways to contribute
26-
27-
- Visit the [OpenTelemetry community site](/community/).
28-
- Add your application to the [Registry](/ecosystem).
29-
- Submit a [blog post or case study](/docs/contributing/blog/).
50+
[OpenTelemetry New Contributor Guide]:
51+
https://github.com/open-telemetry/community/blob/main/guides/contributor
52+
[org]: https://github.com/open-telemetry

‎content/en/docs/contributing/development.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
2-
title: Development
2+
title: Development setup and commands to build, serve, and more
3+
linkTitle: Dev setup and more
34
description:
45
Learn how to set up a development environment for the opentelemetry.io site.
56
weight: 60

‎content/en/docs/contributing/issues.md

+47-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,54 @@
11
---
2-
title: Reporting an issue
3-
description: How to report a bug, a security issue, or a potential improvement.
4-
weight: 50
2+
title: Issues
3+
description:
4+
How to fix an existing issue, or report a bug, security risk, or potential
5+
improvement.
6+
weight: 10
57
cSpell:ignore: prepopulated
8+
_issues: https://github.com/open-telemetry/opentelemetry.io/issues
9+
_issue: https://github.com/open-telemetry/opentelemetry.io/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc+label%3A
610
---
711

12+
## Fixing an existing issue
13+
14+
One of the best ways to help make OTel docs better is to fix an existing issue.
15+
16+
1. Browse through the list of [issues]({{% param _issues %}}).
17+
2. Select an issue that you would like to work on, ideally one that you can fix
18+
in a short amount of time.
19+
20+
<!-- prettier-ignore -->
21+
<a name="first-issue"></a>
22+
{{% alert title="First time contributing? " %}}
23+
24+
Select an issue with the following labels:
25+
26+
- [Good first issue]
27+
- [Help wanted]
28+
29+
<!-- prettier-ignore -->
30+
> **NOTE**: we **_do not_ assign issues** to those who
31+
> have not already made contributions to the [OpenTelemetry
32+
> organization][org].
33+
{.mt-3}
34+
35+
<!-- prettier-ignore -->
36+
[good first issue]: {{% param _issue %}}%22good+first+issue%22
37+
[help wanted]: {{% param _issue %}}%3A%22help+wanted%22
38+
[org]: https://github.com/open-telemetry
39+
40+
{{% /alert %}}
41+
42+
3. Read through the issue comments, if any.
43+
4. Ask maintainers if this issue is still relevant, and ask any questions you
44+
need for clarification by posting comments over the issue.
45+
5. Share your intention to work on the issue by adding add a comment to this
46+
effect.
47+
6. Work on fixing the issue. Let maintainers know if you run into any problems.
48+
7. When ready, [submit your work through a pull request](../pull-requests) (PR).
49+
50+
## Reporting an issue
51+
852
If you notice an error or want to suggest improvements to existing content, open
953
an issue.
1054

‎content/en/docs/contributing/pr-checks.md

+11-12
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ a set of checks are executed. The PR checks verify that...
1818

1919
{{% alert title="Note" color="primary" %}}
2020

21-
If any of the PR checks fails, please try to
22-
[fix content issues automatically](/docs/contributing/new-content/#fix-content-issues-automatically)
21+
If any of the PR checks fails, try to
22+
[fix content issues automatically](../pull-requests/#fix-content-issues-automatically)
2323
first by running `npm run fix:all` on your machine.
2424

2525
Additionally, you can comment `/fix:all` on your Pull Request. This will make
@@ -33,8 +33,7 @@ can recover from a failed state.
3333

3434
## Easy CLA
3535

36-
This check fails if you haven't
37-
[signed the CLA](/docs/contributing/requirements/#sign-the-cla).
36+
This check fails if you haven't [signed the CLA](../prerequisites/#cla).
3837

3938
## Netlify deployment
4039

@@ -43,17 +42,17 @@ more information.
4342

4443
## Style checks
4544

46-
To make sure that contributions follow our
47-
[style guide](/docs/contributing/style-guide) we have implemented a set of
48-
checks that verify style guide rules and fail l if they find any issues.
45+
To make sure that contributions follow our [style guide](../style-guide/) we
46+
have implemented a set of checks that verify style guide rules and fail l if
47+
they find any issues.
4948

5049
The following list describes current checks and what you can do to fix related
5150
errors:
5251

5352
### TEXT linter
5453

5554
This check verifies that
56-
[OpenTelemetry-specific terms and words are used consistently across the site](/docs/contributing/style-guide#opentelemetryio-word-list).
55+
[OpenTelemetry-specific terms and words are used consistently across the site](../style-guide/#opentelemetryio-word-list).
5756

5857
If any issues are found, annotations are added to your files in the
5958
`files changed` view of your PR. Fix those to turn the check green. As an
@@ -63,15 +62,15 @@ issues. Run `npm run check:text` again and manually fix the remaining issues.
6362
### MARKDOWN linter
6463

6564
This check verifies that
66-
[standards and consistency for Markdown files are enforced](/docs/contributing/style-guide#markdown-standards).
65+
[standards and consistency for Markdown files are enforced](../style-guide/#markdown-standards).
6766

6867
If any issues are found, run `npm:run format` to fix most issues. For more
6968
complex issues, run `npm run check:markdown` and apply the suggested changes.
7069

7170
### SPELLING check
7271

7372
This check verifies that
74-
[all words are spelled correctly](/docs/contributing/style-guide#spell-checking).
73+
[all words are spelled correctly](../style-guide/#spell-checking).
7574

7675
### CSPELL:IGNORE check
7776

@@ -83,15 +82,15 @@ new commit.
8382
### FILENAME check
8483

8584
This check verifies that all
86-
[files are formatted by prettier](/docs/contributing/style-guide#file-format).
85+
[files are formatted by prettier](../style-guide/#file-format).
8786

8887
If this check fails, run `npm fix:format` locally and push the changes in a new
8988
commit.
9089

9190
### FILE FORMAT
9291

9392
This check verifies that all
94-
[file names are in kebab-case](/docs/contributing/style-guide#file-names).
93+
[file names are in kebab-case](../style-guide/#file-names).
9594

9695
If this check fails, run `npm fix:filenames` locally and push the changes in a
9796
new commit.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
---
2+
title: Prerequisites
3+
description:
4+
To contribute, you need to be familiar with the following techs and tools.
5+
aliases: [requirements]
6+
weight: 1
7+
---
8+
9+
To contribute to this repository, you need to be familiar with the following
10+
techs and tools:
11+
12+
- [git](https://git-scm.com/)
13+
- [GitHub](https://github.com/)
14+
- Markdown ([CommonMark](https://commonmark.org/))
15+
- YAML
16+
17+
For technical details concerning how the documentation is built and tested
18+
locally, see [Development](../development).
19+
20+
## Sign the CNCF CLA {#cla}
21+
22+
All OpenTelemetry contributors must sign the Linux Foundation [Contributor
23+
License Agreement (CLA)][CLA].
24+
25+
Pull requests from contributors who haven't signed the CLA fail the automated
26+
tests. The name and email you provide must match those found in your
27+
`git config`, and your git name and email must match those used for the CNCF
28+
CLA.
29+
30+
## Code of conduct
31+
32+
All OpenTelemetry contributors are bound by the [CNCF Community Code of
33+
Conduct][CoC].
34+
35+
## Community guidelines
36+
37+
For general OpenTelemetry community guidelines, including roles and
38+
expectations, see [OpenTelemetry New Contributor Guide][NCG]
39+
40+
[CLA]: https://docs.linuxfoundation.org/lfx/easycla/contributors
41+
[CoC]: https://github.com/cncf/foundation/blob/main/code-of-conduct.md
42+
[NCG]:
43+
https://github.com/open-telemetry/community/blob/main/guides/contributor/README.md

‎content/en/docs/contributing/new-content.md ‎content/en/docs/contributing/pull-requests.md

+30-17
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,26 @@
11
---
2-
title: Add new content
3-
description: Learn how to add new content using GitHub UI or a local fork.
4-
weight: 2
2+
title: Submitting content
3+
description:
4+
Learn how to submit new or changed content using the GitHub UI or a local
5+
fork.
6+
aliases: [new-content]
7+
weight: 15
58
---
69

7-
To contribute new content pages or improve existing content pages, open a pull
8-
request (PR):
10+
To contribute new or improve existing documentation content, submit a [pull
11+
request][PR] (PR):
912

10-
- If your change is small, or you're unfamiliar with Git, read
13+
- If your change is small, or you're unfamiliar with Git, see
1114
[Changes using GitHub](#changes-using-github) to learn how to edit a page.
12-
- If your changes are large, read [Work from a local fork](#fork-the-repo) to
15+
- If your changes are large, see [Work from a local fork](#fork-the-repo) to
1316
learn how to make changes locally on your computer.
1417

15-
{{% alert title="Tip" %}}
18+
{{% alert title="Tip: Draft status" %}}
1619

17-
Turn your pull request into a draft to signal that the content still isn't ready
18-
for review. Maintainers may still comment or do high-level reviews, though they
19-
won't review the content in full until you remove the draft status.
20+
Set the status of your pull request to **Draft** to let maintainers know that
21+
the content isn't ready for review yet. Maintainers may still comment or do
22+
high-level reviews, though they won't review the content in full until you
23+
remove the draft status.
2024

2125
{{% /alert %}}
2226

@@ -46,7 +50,17 @@ _Figure 1. Contributing new content._
4650
## Changes using GitHub {#changes-using-github}
4751

4852
If you're less experienced with Git workflows, here's an easier method of
49-
opening a pull request. Figure 2 outlines the steps and the details follow.
53+
creating and submitting a pull request. Figure 2 outlines the steps and the
54+
details follow.
55+
56+
{{% alert title="Contributor License Agreement (CLA)" color=warning %}}
57+
58+
All contributors are required to [sign a Contributor License Agreement
59+
(CLA)][CLA] before changes can be approved and merged.
60+
61+
[CLA]: ../prerequisites/#cla
62+
63+
{{% /alert %}}
5064

5165
```mermaid
5266
flowchart LR
@@ -330,8 +344,7 @@ using [Netlify](https://www.netlify.com/).
330344
the OpenTelemetry website with your changes applied. This is how reviewers
331345
check your changes.
332346

333-
Other checks might also fail. See the
334-
[list of all PR checks](/docs/contributing/pr-checks).
347+
Other checks might also fail. See the [list of all PR checks](../pr-checks).
335348

336349
### Fix content issues automatically
337350

@@ -349,9 +362,8 @@ npm run test # Checks but does not update any files
349362
npm run fix:all # May update files
350363
```
351364

352-
To list available NPM scripts, run `npm run`. See
353-
[PR checks](/docs/contributing/pr-checks) for more information on pull request
354-
checks and how to fix errors automatically.
365+
To list available NPM scripts, run `npm run`. See [PR checks](../pr-checks) for
366+
more information on pull request checks and how to fix errors automatically.
355367

356368
### Preview your changes locally {#preview-locally}
357369

@@ -501,3 +513,4 @@ Pull requests are merged when they comply with the following criteria:
501513
[dashboard]: https://app.netlify.com/sites/opentelemetry/overview
502514
[deploy preview]:
503515
https://www.netlify.com/blog/2016/07/20/introducing-deploy-previews-in-netlify/
516+
[PR]: https://docs.github.com/en/pull-requests

‎content/en/docs/contributing/requirements.md

-33
This file was deleted.

‎content/en/docs/contributing/style-guide.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ before submitting a
2222
[pull request](https://docs.github.com/en/get-started/learning-about-github/github-glossary#pull-request)
2323
(PR), run `npm run fix:all` on your local machine and commit the changes.
2424

25-
If you run into errors or [failed PR checks](/docs/contributing/pr-checks), read
26-
about our style guide and learn what you can do to fix certain common issues.
25+
If you run into errors or [failed PR checks](../pr-checks), read about our style
26+
guide and learn what you can do to fix certain common issues.
2727

2828
{{% /alert %}}
2929

‎content/en/docs/languages/java/sdk.md

-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
---
22
title: Manage Telemetry with SDK
3-
linkTitle: Manage Telemetry with SDK
43
weight: 11
5-
aliases: [sdk-concepts]
64
cSpell:ignore: autoconfigured FQCNs Interceptable Logback okhttp
75
---
86

‎content/en/docs/languages/python/propagation.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ First, on the sending service, inject the current `context`:
3636
```python
3737
from flask import Flask
3838
import requests
39-
from opentelemetry import trace, propagators, baggage
39+
from opentelemetry import trace, baggage
4040
from opentelemetry.trace.propagation.tracecontext import TraceContextTextMapPropagator
4141
from opentelemetry.baggage.propagation import W3CBaggagePropagator
4242
from opentelemetry.sdk.trace import TracerProvider

‎content/en/docs/zero-code/net/configuration.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -147,11 +147,11 @@ probability, a number in the [0..1] range, e.g. "0.25". Default is 1.0.
147147

148148
Exporters output the telemetry.
149149

150-
| Environment variable | Description | Default value | Status |
151-
| ----------------------- | ------------------------------------------------------------------------------------------------ | ------------- | --------------------------------------------------- |
152-
| `OTEL_TRACES_EXPORTER` | Comma-separated list of propagators. Supported options: `otlp`, `zipkin`, `console`, `none`. | `otlp` | [Stable](/docs/specs/otel/versioning-and-stability) |
153-
| `OTEL_METRICS_EXPORTER` | Comma-separated list of propagators. Supported options: `otlp`, `prometheus`, `console`, `none`. | `otlp` | [Stable](/docs/specs/otel/versioning-and-stability) |
154-
| `OTEL_LOGS_EXPORTER` | Comma-separated list of propagators. Supported options: `otlp`, `console`, `none`. | `otlp` | [Stable](/docs/specs/otel/versioning-and-stability) |
150+
| Environment variable | Description | Default value | Status |
151+
| ----------------------- | ---------------------------------------------------------------------------------------------- | ------------- | --------------------------------------------------- |
152+
| `OTEL_TRACES_EXPORTER` | Comma-separated list of exporters. Supported options: `otlp`, `zipkin`, `console`, `none`. | `otlp` | [Stable](/docs/specs/otel/versioning-and-stability) |
153+
| `OTEL_METRICS_EXPORTER` | Comma-separated list of exporters. Supported options: `otlp`, `prometheus`, `console`, `none`. | `otlp` | [Stable](/docs/specs/otel/versioning-and-stability) |
154+
| `OTEL_LOGS_EXPORTER` | Comma-separated list of exporters. Supported options: `otlp`, `console`, `none`. | `otlp` | [Stable](/docs/specs/otel/versioning-and-stability) |
155155

156156
### Traces exporter
157157

‎data/registry/collector-exporter-apiclarity.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# cSpell:ignore apiclarity
1+
# cSpell:ignore apiclarity apiclarityexporter openclarity
22
title: APIClarity HTTP Exporter
33
registryType: exporter
44
language: collector
@@ -15,3 +15,7 @@ authors:
1515
urls:
1616
repo: https://github.com/openclarity/apiclarity/tree/master/plugins/otel-collector
1717
createdAt: 2022-11-28
18+
package:
19+
name: github.com/openclarity/apiclarity/plugins/otel-collector/apiclarityexporter
20+
registry: go-collector
21+
version: v0.0.0

‎data/registry/tools-ruby-sentry.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ createdAt: 2023-01-31
2323
package:
2424
registry: gems
2525
name: sentry-opentelemetry
26-
version: 5.19.0
26+
version: 5.20.1

‎layouts/shortcodes/apidocs.md

+10-2
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,13 @@
1515
{{ end -}}
1616

1717
{{ range $pages }}
18-
* [{{ .lang.name }} &mdash; {{ .page.Title }}]({{ .page.Permalink }})
19-
{{ end -}}
18+
{{ $title := replaceRE `API reference` "" .page.Title -}}
19+
20+
- [
21+
{{- .lang.name -}}
22+
{{ with $title }} &mdash; {{ . }} {{- end -}}
23+
](
24+
{{- .page.Permalink -}}
25+
)
26+
27+
{{- end -}}

‎package.json

+10-10
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@
117117
"ajv-errors": "^3.0.0",
118118
"ajv-formats": "^3.0.1",
119119
"autoprefixer": "^10.4.20",
120-
"cspell": "^8.14.2",
120+
"cspell": "^8.14.4",
121121
"gulp": "^5.0.0",
122122
"hugo-extended": "0.133.0",
123123
"js-yaml": "^4.1.0",
@@ -129,26 +129,26 @@
129129
"textlint": "^14.2.0",
130130
"textlint-filter-rule-allowlist": "^4.0.0",
131131
"textlint-filter-rule-comments": "^1.2.2",
132-
"textlint-rule-terminology": "^5.2.6",
132+
"textlint-rule-terminology": "^5.2.9",
133133
"through2": "^4.0.2",
134134
"yargs": "^17.7.2"
135135
},
136136
"dependencies": {
137137
"@opentelemetry/api": "^1.9.0",
138138
"@opentelemetry/auto-instrumentations-web": "^0.41.0",
139-
"@opentelemetry/context-zone": "^1.25.1",
140-
"@opentelemetry/core": "^1.25.1",
139+
"@opentelemetry/context-zone": "^1.26.0",
140+
"@opentelemetry/core": "^1.26.0",
141141
"@opentelemetry/exporter-trace-otlp-http": "^0.53.0",
142142
"@opentelemetry/instrumentation": "^0.53.0",
143-
"@opentelemetry/resources": "^1.25.1",
144-
"@opentelemetry/sdk-trace-base": "^1.25.1",
145-
"@opentelemetry/sdk-trace-web": "^1.25.1",
146-
"@opentelemetry/semantic-conventions": "^1.26.0",
143+
"@opentelemetry/resources": "^1.26.0",
144+
"@opentelemetry/sdk-trace-base": "^1.26.0",
145+
"@opentelemetry/sdk-trace-web": "^1.26.0",
146+
"@opentelemetry/semantic-conventions": "^1.27.0",
147147
"path": "^0.12.7"
148148
},
149149
"optionalDependencies": {
150-
"netlify-cli": "^17.34.3",
151-
"npm-check-updates": "^17.1.0"
150+
"netlify-cli": "^17.36.2",
151+
"npm-check-updates": "^17.1.3"
152152
},
153153
"enginesComment": "Ensure that engines.node value stays consistent with the project's .nvmrc",
154154
"engines": {

‎static/refcache.json

+8
Original file line numberDiff line numberDiff line change
@@ -2591,6 +2591,10 @@
25912591
"StatusCode": 206,
25922592
"LastSeen": "2024-06-12T11:21:07.765039+02:00"
25932593
},
2594+
"https://docs.github.com/en/pull-requests": {
2595+
"StatusCode": 206,
2596+
"LastSeen": "2024-09-28T12:02:48.071874-04:00"
2597+
},
25942598
"https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-pull-requests": {
25952599
"StatusCode": 206,
25962600
"LastSeen": "2024-01-30T15:25:17.633498-05:00"
@@ -10795,6 +10799,10 @@
1079510799
"StatusCode": 200,
1079610800
"LastSeen": "2024-08-09T11:01:13.220618-04:00"
1079710801
},
10802+
"https://pkg.go.dev/github.com/openclarity/apiclarity/plugins/otel-collector/apiclarityexporter": {
10803+
"StatusCode": 200,
10804+
"LastSeen": "2024-08-12T17:56:07.964057+02:00"
10805+
},
1079810806
"https://pkg.go.dev/go.opentelemetry.io/collector/cmd/builder": {
1079910807
"StatusCode": 200,
1080010808
"LastSeen": "2024-03-01T16:49:30.684687+01:00"

0 commit comments

Comments
 (0)
Please sign in to comment.