opentelemetry-collector/extension
renovate[bot] eb6bc6aff4
Update module golang.org/x/net to v0.28.0 (#10822)
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| golang.org/x/net | `v0.27.0` -> `v0.28.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/golang.org%2fx%2fnet/v0.28.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/golang.org%2fx%2fnet/v0.28.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/golang.org%2fx%2fnet/v0.27.0/v0.28.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/golang.org%2fx%2fnet/v0.27.0/v0.28.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

---

### Configuration

📅 **Schedule**: Branch creation - "on tuesday" (UTC), Automerge - At any
time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR was generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View the
[repository job
log](https://developer.mend.io/github/open-telemetry/opentelemetry-collector).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC4xOC4xNyIsInVwZGF0ZWRJblZlciI6IjM4LjE4LjE3IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiLCJyZW5vdmF0ZWJvdCJdfQ==-->

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com>
2024-08-06 14:43:20 -07:00
..
auth Prepare Release v0.106.1 (#10754) 2024-07-30 12:30:12 -04:00
ballastextension Update module github.com/shirou/gopsutil/v4 to v4.24.7 (#10805) 2024-08-06 08:05:54 -07:00
experimental/storage [doc] update documentation (#7810) 2023-06-06 08:29:32 -07:00
extensiontest [connector,exporter,receiver,extension,processor] remove deprecated funcs/structs (#10423) 2024-07-19 08:13:50 -07:00
memorylimiterextension Update module github.com/shirou/gopsutil/v4 to v4.24.7 (#10805) 2024-08-06 08:05:54 -07:00
zpagesextension Update module golang.org/x/net to v0.28.0 (#10822) 2024-08-06 14:43:20 -07:00
Makefile split extension into separate module (#7865) 2023-06-09 13:00:26 -07:00
README.md Remove pprofextension, moved to contrib (#3911) 2021-08-27 11:03:44 -07:00
extension.go [connector,exporter,receiver,extension,processor] remove deprecated funcs/structs (#10423) 2024-07-19 08:13:50 -07:00
extension_test.go [extension] deprecate CreateSettings -> Settings (#10339) 2024-06-06 10:33:25 -07:00
go.mod Prepare Release v0.106.1 (#10754) 2024-07-30 12:30:12 -04:00
go.sum [chore] update to mapstructure 2.0.0 (#10610) 2024-07-19 10:20:55 +02:00
package_test.go [chore] remove unused opencensus code (#9108) 2024-01-30 10:19:42 -08:00

README.md

General Information

Extensions provide capabilities on top of the primary functionality of the collector. Generally, extensions are used for implementing components that can be added to the Collector, but which do not require direct access to telemetry data and are not part of the pipelines (like receivers, processors or exporters). Example extensions are: Health Check extension that responds to health check requests or PProf extension that allows fetching Collector's performance profile.

Supported service extensions (sorted alphabetically):

The contributors repository may have more extensions that can be added to custom builds of the Collector.

Ordering Extensions

The order extensions are specified for the service is important as this is the order in which each extension will be started and the reverse order in which they will be shutdown. The ordering is determined in the extensions tag under the service tag in the configuration file, example:

service:
  # Extensions specified below are going to be loaded by the service in the
  # order given below, and shutdown on reverse order.
  extensions: [memory_ballast, zpages]