-
Notifications
You must be signed in to change notification settings - Fork 271
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
disable livedebugging by default and add a config block to enable it.…
… The stability is also updated to experimental
- Loading branch information
Showing
4 changed files
with
76 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
--- | ||
canonical: https://grafana.com/docs/alloy/latest/reference/config-blocks/livedebugging/ | ||
description: Learn about the livedebugging configuration block | ||
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 {{< param "PRODUCT_NAME" >}}'s 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 UI. | ||
|
||
{{< admonition type="note" >}} | ||
Enabling this feature provides detailed insights into the data flowing through your pipelines via {{< param "PRODUCT_NAME" >}}'s API. | ||
To ensure that your data remains secure while live debugging is enabled, consider configuring TLS in the [http block][]. | ||
{{< /admonition >}} | ||
|
||
## Example | ||
|
||
```alloy | ||
livedebugging { | ||
enabled = true | ||
} | ||
``` | ||
|
||
## Arguments | ||
|
||
The following arguments are supported: | ||
|
||
| Name | Type | Description | Default | Required | | ||
| --------- | ------ | ----------------------------------- | ------- | -------- | | ||
| `enabled` | `bool` | Enables the live debugging feature. | `false` | no | | ||
|
||
[debug]: ../../../tasks/debug/ | ||
[http block]: ../http/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters