Skip to content

Commit

Permalink
Change the stability of the livedebugging feature from experimental t…
Browse files Browse the repository at this point in the history
…o generally available
  • Loading branch information
wildum committed Nov 15, 2024
1 parent 8b5c04f commit 7f5531e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ Main (unreleased)

- Fixed an issue in the `prometheus.exporter.postgres` component that would leak goroutines when the target was not reachable (@dehaansa)

### Other changes

- Change the stability of the `livedebugging` feature from "experimental" to "generally available". (@wildum)

v1.5.0
-----------------

Expand Down
4 changes: 0 additions & 4 deletions docs/sources/reference/config-blocks/livedebugging.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,8 @@ menuTitle: livedebugging
title: livedebugging block
---

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

# livedebugging block

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

`livedebugging` is an optional configuration block that enables the [live debugging feature][debug], which streams real-time data from your components directly to the {{< param "PRODUCT_NAME" >}} UI.

By default, [live debugging][debug] is disabled and must be explicitly enabled through this configuration block to make the debugging data visible in the {{< param "PRODUCT_NAME" >}} UI.
Expand Down
2 changes: 1 addition & 1 deletion internal/service/livedebugging/service.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ func (*Service) Definition() service.Definition {
Name: ServiceName,
ConfigType: Arguments{},
DependsOn: []string{},
Stability: featuregate.StabilityExperimental,
Stability: featuregate.StabilityGenerallyAvailable,
}
}

Expand Down

0 comments on commit 7f5531e

Please sign in to comment.