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/monitor/1.0.x/architecture.mdx
+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
@@ -293,7 +293,7 @@ The architecture includes several resilience mechanisms:
293
293
****Retry Logic***: Notification delivery includes configurable retry mechanisms for transient failures
294
294
****Graceful Degradation***: Individual component failures don’t cascade to the entire system
295
295
296
-
For detailed information about RPC logic and network communication, see the [RPC section](/monitor/rpc).
296
+
For detailed information about RPC logic and network communication, see the [RPC section](/monitor/1.0.x/rpc).
297
297
298
298
## Configuration Architecture
299
299
@@ -316,7 +316,7 @@ The system implements comprehensive validation:
316
316
317
317
318
318
319
-
For configuration examples and best practices, see the [Configuration Guidelines](/monitor#configuration-guidelines) section in the user documentation.
319
+
For configuration examples and best practices, see the [Configuration Guidelines](/monitor/1.0.x#configuration-guidelines) section in the user documentation.
320
320
321
321
322
322
## Extensibility Points
@@ -355,8 +355,8 @@ The system implements several security measures:
355
355
356
356
## Related Documentation
357
357
358
-
For detailed information about the project structure, source code organization, and development resources, see the [Project Structure](/monitor/project-structure) guide.
358
+
For detailed information about the project structure, source code organization, and development resources, see the [Project Structure](/monitor/1.0.x/project-structure) guide.
359
359
360
-
For information about RPC logic and network communication, see the [RPC section](/monitor/rpc).
360
+
For information about RPC logic and network communication, see the [RPC section](/monitor/1.0.x/rpc).
361
361
362
-
For configuration examples and best practices, see the [Configuration Guidelines](/monitor#configuration-guidelines) section in the user documentation.
362
+
For configuration examples and best practices, see the [Configuration Guidelines](/monitor/1.0.x#configuration-guidelines) section in the user documentation.
Copy file name to clipboardExpand all lines: content/monitor/1.0.x/index.mdx
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -31,7 +31,7 @@ In the rapidly evolving world of blockchain technology, effective monitoring is
31
31
32
32
33
33
34
-
To get started immediately, see [Quickstart](/monitor/quickstart).
34
+
To get started immediately, see [Quickstart](/monitor/1.0.x/quickstart).
35
35
36
36
37
37
## Installation
@@ -658,7 +658,7 @@ A Trigger defines actions to take when monitored conditions are met. Triggers ca
658
658
|`**arguments**`|`Array[String]`| The arguments of the script (optional). |
659
659
|`**timeout_ms**`|`Number`| The timeout of the script is important to avoid infinite loops during the execution. If the script takes longer than the timeout, it will be killed. |
660
660
661
-
For more information about custom scripts, see [Custom Scripts Section](/monitor/scripts).
661
+
For more information about custom scripts, see [Custom Scripts Section](/monitor/1.0.x/scripts).
662
662
663
663
664
664
@@ -1206,7 +1206,7 @@ You can find the contract specification through Stellar contract explorer tool.
1206
1206
1207
1207
Custom filters allow you to create sophisticated filtering logic for processing monitor matches. These filters act as additional validation layers that determine whether a match should trigger the execution of a trigger or not.
1208
1208
1209
-
For more information about custom scripts, see [Custom Scripts Section](/monitor/scripts).
1209
+
For more information about custom scripts, see [Custom Scripts Section](/monitor/1.0.x/scripts).
1210
1210
1211
1211
1212
1212
@@ -1397,21 +1397,21 @@ Specific Block Mode requires both parameters:
1397
1397
1398
1398
## Error Handling
1399
1399
1400
-
The monitor implements a comprehensive error handling system with rich context and tracing capabilities. For detailed information about error handling, see [Error Handling Guide](/monitor/error).
1400
+
The monitor implements a comprehensive error handling system with rich context and tracing capabilities. For detailed information about error handling, see [Error Handling Guide](/monitor/1.0.x/error).
1401
1401
1402
1402
## Important Considerations
1403
1403
1404
1404
### Performance Considerations
1405
1405
1406
1406
* Monitor performance depends on network congestion and RPC endpoint reliability.
1407
-
* View the [list of RPC calls](/monitor/rpc#list-of-rpc-calls) made by the monitor.
1407
+
* View the [list of RPC calls](/monitor/1.0.x/rpc#list-of-rpc-calls) made by the monitor.
1408
1408
* The `max_past_blocks` configuration is critical:
1409
1409
* Calculate as: `(cron_interval_ms/block_time_ms) + confirmation_blocks + 1` (defaults to this calculation if not specified).
1410
1410
* Example for 1-minute Ethereum cron: `(60000/12000) + 12 + 1 = 18 blocks`.
1411
1411
* Too low settings may result in missed blocks.
1412
1412
* Trigger conditions are executed sequentially based on their position in the trigger conditions array. Proper execution also depends on the number of available file descriptors on your system. To ensure optimal performance, it is recommended to increase the limit for open file descriptors to at least 2048 or higher. On Unix-based systems you can check the current limit by running `ulimit -n` and _***temporarily***_ increase it with `ulimit -n 2048`.
1413
1413
* Since scripts are loaded at startup, any modifications to script files require restarting the monitor to take effect.
1414
-
* See performance considerations about custom scripts [here](/monitor/scripts#performance-considerations).
1414
+
* See performance considerations about custom scripts [here](/monitor/1.0.x/scripts#performance-considerations).
Copy file name to clipboardExpand all lines: content/monitor/1.0.x/project-structure.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -203,4 +203,4 @@ The project includes Docker configurations for different environments:
203
203
204
204
205
205
206
-
For detailed information about running the monitor in containers, see the Docker deployment [section](/monitor#docker-installation) in the user documentation.
206
+
For detailed information about running the monitor in containers, see the Docker deployment [section](/monitor/1.0.x#docker-installation) in the user documentation.
Copy file name to clipboardExpand all lines: content/monitor/architecture.mdx
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -317,7 +317,7 @@ The architecture includes several resilience mechanisms:
317
317
****Retry Logic***: Notification delivery includes configurable retry mechanisms for transient failures
318
318
****Graceful Degradation***: Individual component failures don’t cascade to the entire system
319
319
320
-
For detailed information about RPC logic and network communication, see the [RPC section](rpc).
320
+
For detailed information about RPC logic and network communication, see the [RPC section](/monitor/rpc).
321
321
322
322
## Configuration Architecture
323
323
@@ -379,8 +379,8 @@ The system implements several security measures:
379
379
380
380
## Related Documentation
381
381
382
-
For detailed information about the project structure, source code organization, and development resources, see the [Project Structure](project-structure) guide.
382
+
For detailed information about the project structure, source code organization, and development resources, see the [Project Structure](/monitor/project-structure) guide.
383
383
384
-
For information about RPC logic and network communication, see the [RPC section](rpc).
384
+
For information about RPC logic and network communication, see the [RPC section](/monitor/rpc).
385
385
386
386
For configuration examples and best practices, see the [Configuration Guidelines](#configuration-guidelines) section in the user documentation.
Copy file name to clipboardExpand all lines: content/monitor/index.mdx
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -32,7 +32,7 @@ In the rapidly evolving world of blockchain technology, effective monitoring is
32
32
<Callout>
33
33
34
34
35
-
To get started immediately, see [Quickstart](quickstart).
35
+
To get started immediately, see [Quickstart](/monitor/quickstart).
36
36
37
37
</Callout>
38
38
@@ -693,7 +693,7 @@ A Trigger defines actions to take when monitored conditions are met. Triggers ca
693
693
|`**arguments**`|`Array[String]`| The arguments of the script (optional). |
694
694
|`**timeout_ms**`|`Number`| The timeout of the script is important to avoid infinite loops during the execution. If the script takes longer than the timeout, it will be killed. |
695
695
696
-
For more information about custom scripts, see [Custom Scripts Section](scripts).
696
+
For more information about custom scripts, see [Custom Scripts Section](/monitor/scripts).
697
697
698
698
699
699
@@ -1301,7 +1301,7 @@ You can find the contract specification through Stellar contract explorer tool.
1301
1301
1302
1302
Custom filters allow you to create sophisticated filtering logic for processing monitor matches. These filters act as additional validation layers that determine whether a match should trigger the execution of a trigger or not.
1303
1303
1304
-
For more information about custom scripts, see [Custom Scripts Section](scripts).
1304
+
For more information about custom scripts, see [Custom Scripts Section](/monitor/scripts).
1305
1305
1306
1306
1307
1307
@@ -1492,21 +1492,21 @@ Specific Block Mode requires both parameters:
1492
1492
1493
1493
## Error Handling
1494
1494
1495
-
The monitor implements a comprehensive error handling system with rich context and tracing capabilities. For detailed information about error handling, see [Error Handling Guide](error).
1495
+
The monitor implements a comprehensive error handling system with rich context and tracing capabilities. For detailed information about error handling, see [Error Handling Guide](/monitor/error).
1496
1496
1497
1497
## Important Considerations
1498
1498
1499
1499
### Performance Considerations
1500
1500
1501
1501
* Monitor performance depends on network congestion and RPC endpoint reliability.
1502
-
* View the [list of RPC calls](rpc#list-of-rpc-calls) made by the monitor.
1502
+
* View the [list of RPC calls](/monitor/rpc#list-of-rpc-calls) made by the monitor.
1503
1503
* The `max_past_blocks` configuration is critical:
1504
1504
* Calculate as: `(cron_interval_ms/block_time_ms) + confirmation_blocks + 1` (defaults to this calculation if not specified).
1505
1505
* Example for 1-minute Ethereum cron: `(60000/12000) + 12 + 1 = 18 blocks`.
1506
1506
* Too low settings may result in missed blocks.
1507
1507
* Trigger conditions are executed sequentially based on their position in the trigger conditions array. Proper execution also depends on the number of available file descriptors on your system. To ensure optimal performance, it is recommended to increase the limit for open file descriptors to at least 2048 or higher. On Unix-based systems you can check the current limit by running `ulimit -n` and _***temporarily***_ increase it with `ulimit -n 2048`.
1508
1508
* Since scripts are loaded at startup, any modifications to script files require restarting the monitor to take effect.
1509
-
* See performance considerations about custom scripts [here](scripts#performance-considerations).
1509
+
* See performance considerations about custom scripts [here](/monitor/scripts#performance-considerations).
Copy file name to clipboardExpand all lines: content/monitor/project-structure.mdx
+1-2Lines changed: 1 addition & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -205,5 +205,4 @@ The project includes Docker configurations for different environments:
205
205
206
206
207
207
208
-
For detailed information about running the monitor in containers, see the Docker deployment [section](docker-installation) in the user documentation.
209
-
208
+
For detailed information about running the monitor in containers, see the Docker deployment [section](/monitor#docker-installation) in the user documentation.
0 commit comments