This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | [github.com/shirou/gopsutil/v4](https://redirect.github.com/shirou/gopsutil) | `v4.25.6` -> `v4.25.7` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>shirou/gopsutil (github.com/shirou/gopsutil/v4)</summary> ### [`v4.25.7`](https://redirect.github.com/shirou/gopsutil/releases/tag/v4.25.7) [Compare Source](https://redirect.github.com/shirou/gopsutil/compare/v4.25.6...v4.25.7) <!-- Release notes generated using configuration in .github/release.yml at v4.25.7 --> #### What's Changed ##### disk - fix(disk): handle NVMe controller notation in IOCounters on Linux by [@​skartikey](https://redirect.github.com/skartikey) in [https://github.com/shirou/gopsutil/pull/1878](https://redirect.github.com/shirou/gopsutil/pull/1878) ##### mem - fix 404 link to centos.org by [@​martoche](https://redirect.github.com/martoche) in [https://github.com/shirou/gopsutil/pull/1872](https://redirect.github.com/shirou/gopsutil/pull/1872) ##### process - process: Fix parsing of uid/gid's to handle full uint32 range by [@​halaney](https://redirect.github.com/halaney) in [https://github.com/shirou/gopsutil/pull/1887](https://redirect.github.com/shirou/gopsutil/pull/1887) ##### Other Changes - chore: enable unused-receiver from revive by [@​mmorel-35](https://redirect.github.com/mmorel-35) in [https://github.com/shirou/gopsutil/pull/1883](https://redirect.github.com/shirou/gopsutil/pull/1883) - enable shadow from govet by [@​mmorel-35](https://redirect.github.com/mmorel-35) in [https://github.com/shirou/gopsutil/pull/1863](https://redirect.github.com/shirou/gopsutil/pull/1863) - fix: windows-2019 runner image has been deprecated by [@​shirou](https://redirect.github.com/shirou) in [https://github.com/shirou/gopsutil/pull/1881](https://redirect.github.com/shirou/gopsutil/pull/1881) #### New Contributors - [@​martoche](https://redirect.github.com/martoche) made their first contribution in [https://github.com/shirou/gopsutil/pull/1872](https://redirect.github.com/shirou/gopsutil/pull/1872) - [@​halaney](https://redirect.github.com/halaney) made their first contribution in [https://github.com/shirou/gopsutil/pull/1887](https://redirect.github.com/shirou/gopsutil/pull/1887) - [@​skartikey](https://redirect.github.com/skartikey) made their first contribution in [https://github.com/shirou/gopsutil/pull/1878](https://redirect.github.com/shirou/gopsutil/pull/1878) **Full Changelog**: https://github.com/shirou/gopsutil/compare/v4.25.6...v4.25.7 </details> --- ### 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://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/open-telemetry/opentelemetry-collector). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS41MS4xIiwidXBkYXRlZEluVmVyIjoiNDEuNTEuMSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIiwicmVub3ZhdGVib3QiXX0=--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: otelbot <197425009+otelbot@users.noreply.github.com> |
||
|---|---|---|
| .. | ||
| extensionauth | ||
| extensioncapabilities | ||
| extensionmiddleware | ||
| extensiontest | ||
| memorylimiterextension | ||
| xextension | ||
| zpagesextension | ||
| Makefile | ||
| README.md | ||
| extension.go | ||
| extension_test.go | ||
| go.mod | ||
| go.sum | ||
| package_test.go | ||
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: Memory Limiter extension that prevents out of memory situations or zPages extension that provides live data for debugging different components.
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: [extension1, extension2]