Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(pyroscope): mark pyroscope components as GA #904

Merged
merged 1 commit into from
May 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ Main (unreleased)

### Other changes

- `pyroscope.ebpf`, `pyroscope.java`, `pyroscope.scrape`, `pyroscope.write` and `discovery.process` components are now GA. (@korniltsev)

- `prometheus.exporter.snmp`: Updating SNMP exporter from v0.24.1 to v0.26.0. (@ptodev, @erikbaranowski)

- `prometheus.scrape` component's `enable_protobuf_negotiation` argument is now
Expand Down
4 changes: 0 additions & 4 deletions docs/sources/reference/components/discovery.process.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,8 @@ description: Learn about discovery.process
title: discovery.process
---

<span class="badge docs-labels__stage docs-labels__item">Public preview</span>

# discovery.process

{{< docs/shared lookup="stability/public_preview.md" source="alloy" version="<ALLOY_VERSION>" >}}

`discovery.process` discovers processes running on the local Linux OS.

{{< admonition type="note" >}}
Expand Down
4 changes: 0 additions & 4 deletions docs/sources/reference/components/pyroscope.ebpf.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,8 @@ description: Learn about pyroscope.ebpf
title: pyroscope.ebpf
---

<span class="badge docs-labels__stage docs-labels__item">Public preview</span>

# pyroscope.ebpf

{{< docs/shared lookup="stability/public_preview.md" source="alloy" version="<ALLOY_VERSION>" >}}

`pyroscope.ebpf` configures an ebpf profiling job for the current host.
The collected performance profiles are forwarded to the list of receivers passed in `forward_to`.

Expand Down
4 changes: 0 additions & 4 deletions docs/sources/reference/components/pyroscope.java.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,8 @@ description: Learn about pyroscope.java
title: pyroscope.java
---

<span class="badge docs-labels__stage docs-labels__item">Public preview</span>

# pyroscope.java

{{< docs/shared lookup="stability/public_preview.md" source="alloy" version="<ALLOY_VERSION>" >}}

`pyroscope.java` continuously profiles Java processes running on the local Linux OS using [async-profiler](https://github.com/async-profiler/async-profiler).

{{< admonition type="note" >}}
Expand Down
4 changes: 0 additions & 4 deletions docs/sources/reference/components/pyroscope.scrape.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,8 @@ description: Learn about pyroscope.scrape
title: pyroscope.scrape
---

<span class="badge docs-labels__stage docs-labels__item">Public preview</span>

# pyroscope.scrape

{{< docs/shared lookup="stability/public_preview.md" source="alloy" version="<ALLOY_VERSION>" >}}

`pyroscope.scrape` collects [pprof] performance profiles for a given set of HTTP `targets`.

`pyroscope.scrape` mimcks the scraping behavior of `prometheus.scrape`.
Expand Down
4 changes: 0 additions & 4 deletions docs/sources/reference/components/pyroscope.write.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,8 @@ description: Learn about pyroscope.write
title: pyroscope.write
---

<span class="badge docs-labels__stage docs-labels__item">Public preview</span>

# pyroscope.write

{{< docs/shared lookup="stability/public_preview.md" source="alloy" version="<ALLOY_VERSION>" >}}

`pyroscope.write` receives performance profiles from other components and forwards them to a series of user-supplied endpoints using [Pyroscope' Push API](/oss/pyroscope/).

Multiple `pyroscope.write` components can be specified by giving them different labels.
Expand Down
2 changes: 1 addition & 1 deletion internal/component/discovery/process/process.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (
func init() {
component.Register(component.Registration{
Name: "discovery.process",
Stability: featuregate.StabilityPublicPreview,
Stability: featuregate.StabilityGenerallyAvailable,
Args: Arguments{},
Exports: discovery.Exports{},

Expand Down
2 changes: 1 addition & 1 deletion internal/component/pyroscope/ebpf/ebpf_linux.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import (
func init() {
component.Register(component.Registration{
Name: "pyroscope.ebpf",
Stability: featuregate.StabilityPublicPreview,
Stability: featuregate.StabilityGenerallyAvailable,
Args: Arguments{},

Build: func(opts component.Options, args component.Arguments) (component.Component, error) {
Expand Down
2 changes: 1 addition & 1 deletion internal/component/pyroscope/java/java.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const (
func init() {
component.Register(component.Registration{
Name: "pyroscope.java",
Stability: featuregate.StabilityPublicPreview,
Stability: featuregate.StabilityGenerallyAvailable,
Args: Arguments{},

Build: func(opts component.Options, args component.Arguments) (component.Component, error) {
Expand Down
2 changes: 1 addition & 1 deletion internal/component/pyroscope/scrape/scrape.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const (
func init() {
component.Register(component.Registration{
Name: "pyroscope.scrape",
Stability: featuregate.StabilityPublicPreview,
Stability: featuregate.StabilityGenerallyAvailable,
Args: Arguments{},

Build: func(opts component.Options, args component.Arguments) (component.Component, error) {
Expand Down
2 changes: 1 addition & 1 deletion internal/component/pyroscope/write/write.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ var (
func init() {
component.Register(component.Registration{
Name: "pyroscope.write",
Stability: featuregate.StabilityPublicPreview,
Stability: featuregate.StabilityGenerallyAvailable,
Args: Arguments{},
Exports: Exports{},
Build: func(o component.Options, c component.Arguments) (component.Component, error) {
Expand Down
Loading