You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/en/docs/2025.3/Guides/user-guides/user-interfaces/gateway/dev/flow-editor/bottom-panel/executions-grid.md
+16-13Lines changed: 16 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,47 +1,47 @@
1
1
---
2
2
title: "Executions Grid"
3
3
linkTitle: "Executions Grid"
4
-
description: "View the executions that are being debugged"
4
+
description: "View executions being debugged."
5
5
weight: 20
6
6
---
7
7
8
8
# {{% param title %}}
9
9
10
10
## Summary
11
11
12
-
The Executions Grid displays information about all the [flows][What is a Flow?] that are currently [executing][What is an Execution?], paused, or errored in the Flow Editor.
12
+
The Executions Grid displays information about all the [flows][What is a Flow?] that are currently being debugged by the developer.
The Executions Grid is automatically displayed when in Debug Mode and a flow is executing or paused from executing; however, it may be manually opened, or closed any time by clicking the Open/Close handle or resized by dragging the handle up or down.
18
+
The Executions Grid is automatically displayed when in `Debug` mode and a flow is `Running` or `Paused`; however, it may be manually opened, or closed any time by clicking the Open/Close handle or resized by dragging the handle up or down.
19
19
20
-
Flows that are Running or Paused are shown with a green background; flows that have raised an [exception][What is an Exception?] are shown with a red background.
20
+
Flows that are `Running` or `Paused` are shown with a green background; flows that have raised an [exception][What is an Exception?] are shown with a red background.
21
21
22
-
An executionmay be selected by clicking on its row in the Executions Grid and can be controlled by a set of icons on the top right of the Executions Grid. Selected executions are indicated with a darker background and the actions available are dependent on the state of the selected execution; greyed-out action icons not applicable to the selected executions’ state.
22
+
An [execution][What is an Execution?]may be selected by clicking on its row and can be controlled by action icons at the top right of the Executions Grid. Multiple executions can be selected using `Ctrl + Click` or `Shift + Click`. Selected executions are indicated with a darker background and the actions available are dependent on the state of the selected executions; greyed-out action icons are not applicable to the selected executions’ state.
23
23
24
24
## Actions
25
25
26
26
### Continue the Execution
27
27
28
-
Clicking the {{< image src="/images/Flow Editor - Continue Execution.png" >}} icon causes the selected execution to continue until the flow ends, a breakpoint is reached, or an exception has occurred causing the flow to pause. This action is only available for paused executions.
28
+
Clicking the {{< image src="/images/Flow Editor - Continue Execution.png" >}} icon causes the selected executions to continue until the flow ends, a breakpoint is reached, or[`Break on exception`][Execution Options] is enabled and an exception has occurred causing the flow to pause. This action is only available for paused executions.
29
29
30
30
See the [Continue and Stop the Execution][Continue and Stop the Execution tutorial] tutorial for a step-by-step guide.
31
31
32
32
### Pause the Execution
33
33
34
-
Clicking the {{< image src="/images/Flow Editor - Pause Execution.png" >}} icon pauses the selected execution. This action is only available for running executions.
34
+
Clicking the {{< image src="/images/Flow Editor - Pause Execution.png" >}} icon pauses the selected executions. This action is only available for running executions.
35
35
36
36
### Step the Execution
37
37
38
-
Clicking the {{< image src="/images/Flow Editor - Step Execution.png" >}} icon causes the selected execution to execute the next [block][What is a Block?] and pause again. This action is only available for paused executions.
38
+
Clicking the {{< image src="/images/Flow Editor - Step Execution.png" >}} icon causes the selected executions to execute the next [block][What is a Block?] and pause again. This action is only available for paused executions.
39
39
40
40
See the [Step the Execution][Step the Execution tutorial] tutorial for a step-by-step guide.
41
41
42
42
### Stop the Execution
43
43
44
-
Clicking the {{< image src="/images/Flow Editor - Stop Execution.png" >}} icon terminates the execution of the selected execution, and after a few seconds, removes them from Executions Grid. This action is available for all executions, regardless of their state.
44
+
Clicking the {{< image src="/images/Flow Editor - Stop Execution.png" >}} icon stops the the selected executions, and after a few seconds, removes them from Executions Grid. This action is available for all executions, regardless of their state.
45
45
46
46
See the [Continue and Stop the Execution][Continue and Stop the Execution tutorial] tutorial for a step-by-step guide.
47
47
@@ -51,15 +51,17 @@ Clicking the {{< image src="/images/Flow Editor - Go To.png" >}} icon causes the
51
51
52
52
See the [Stop Tracking and Go To][Stop Tracking and Go To tutorial] tutorial for a step-by-step guide.
53
53
54
-
### Start tracking
54
+
### Start Tracking
55
55
56
-
Clicking the {{< image src="/images/Flow Editor - Start Tracking.png" >}} icon causes the Flow Editor to follow the flow execution, opening any necessary workspaces. The execution is not dynamically tracked if the Show execution on workspace Execution option is not selected, or a second execution is started concurrently in the Flow Editor. This action is available for any execution not being tracked.
56
+
Clicking the {{< image src="/images/Flow Editor - Start Tracking.png" >}} icon causes the Flow Editor to follow the selected execution, opening any necessary workspaces. This action is available for any execution not being tracked.
57
+
58
+
Note: When an execution is started, if no other executions are being tracked, it will be automatically tracked if [`Show execution on workspace`][Execution Options] is enabled.
57
59
58
60
See the [Start Tracking][Start Tracking tutorial] tutorial for a step-by-step guide.
59
61
60
-
### Stop tracking
62
+
### Stop Tracking
61
63
62
-
Clicking the {{< image src="/images/Flow Editor - Stop Tracking.png" >}} icon causes the tracking of the execution to stop, and the Flow Editor will not maintain focus on the execution. This action is available for any execution being tracked.
64
+
Clicking the {{< image src="/images/Flow Editor - Stop Tracking.png" >}} icon causes the tracking of the execution to stop, and the Flow Editor will not follow the selected execution. This action is available for any execution being tracked.
63
65
64
66
See the [Stop Tracking and Go To][Stop Tracking and Go To tutorial] tutorial for a step-by-step guide.
Copy file name to clipboardExpand all lines: content/en/docs/2025.3/Guides/user-guides/user-interfaces/gateway/dev/flow-editor/bottom-panel/messages-grid.md
+7-6Lines changed: 7 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,8 @@
1
1
---
2
2
title: "Messages Grid"
3
3
linkTitle: "Messages Grid"
4
-
description: "TODO"
5
-
weight: 40
4
+
description: "Identify issues preventing a flow from being debugged."
5
+
weight: 30
6
6
---
7
7
8
8
# {{% param title %}}
@@ -17,21 +17,21 @@ The Messages Grid lists any [issues][What is a Message?] preventing a [flow][Wha
17
17
18
18
The Messages Grid is automatically displayed if there are any issues when attempting to debug a flow; however, it may be manually opened, or closed any time by clicking the Open/Close handle or resized by dragging the handle up or down.
19
19
20
-
Each error message identifies the location of the error, a summary of the error, and a detailed explanation.
20
+
Each message identifies the location of the issue, a summary of the issue, and a detailed explanation.
21
21
22
22
## Actions
23
23
24
-
### Navigate to Property with Error
24
+
### Navigate to Issue
25
25
26
-
To locate the error in the flow, double-click on the error. This will automatically navigate to, and select, the [block][What is a Block?]containing the error. The [Property Editor][]will be opened and the [property][What is a Block Property?] containing the error will be selected.
26
+
If the issue in the flow is related to a misconfigured block [property][What is a Block Property?], double-clicking on the message will automatically navigate to, and select, the [block][What is a Block?]with the issue, open the [Property Editor][] and select the property causing the issue.
27
27
28
28
See the [Messages Grid][Messages Grid tutorial] tutorial for a step-by-step guide.
29
29
30
30
## Remarks
31
31
32
32
### Known Limitations
33
33
34
-
*The parser is only run when flows are executed. If the flow is not debugged in the Flow Editor before the flow is packaged and published, when an attempt is made to execute the published flow, the parser on the application node will run the parser and any errors raised will result in the flow execution failing and an error message returned in the REST response.
34
+
*Issues with misconfigured input variables in the [Settings Editor][] cannot be navigated to.
35
35
36
36
## See Also
37
37
@@ -51,6 +51,7 @@ See the [Messages Grid][Messages Grid tutorial] tutorial for a step-by-step guid
Copy file name to clipboardExpand all lines: content/en/docs/2025.3/Guides/user-guides/user-interfaces/gateway/dev/flow-editor/bottom-panel/overview.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,25 +1,25 @@
1
1
---
2
2
title: "Overview"
3
3
linkTitle: "Overview"
4
-
description: "Summary and Anatomy of the Bottom Panel"
4
+
description: "Summary and anatomy of the Bottom Panel."
5
5
weight: 10
6
6
---
7
7
8
8
# {{% param title %}}
9
9
10
10
## Summary
11
11
12
-
The Bottom Panel allows the management of [variables][What is a Variable?], displays the current [executions][What is an Execution?] being debugged and any [issues][What is a Message?] preventing the [flow][What is a Flow?] from being debugged.
12
+
The Bottom Panel displays the current [executions][What is an Execution?] being debugged, any [issues][What is a Message?] preventing the [flow][What is a Flow?] from being debugged and also allows the management of [variables][What is a Variable?].
0 commit comments