Skip to content

Commit feb7487

Browse files
committed
chore: reverted monitor/architecture changes
1 parent 2aa8c1f commit feb7487

File tree

1 file changed

+25
-1
lines changed

1 file changed

+25
-1
lines changed

content/monitor/architecture.mdx

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,14 @@ OpenZeppelin Monitor is organized as a data processing pipeline that spans from
1313
The diagram below shows the core processing pipeline of OpenZeppelin Monitor, from blockchain networks and configuration through to notification channels:
1414

1515
```mermaid
16+
%%{init: {
17+
'theme': 'base',
18+
'themeVariables': {
19+
'background': '#ffffff',
20+
'mainBkg': '#ffffff',
21+
'primaryBorderColor': '#cccccc'
22+
}
23+
}}%%
1624
flowchart LR
1725
subgraph "Blockchain Networks"
1826
EVMN["EVM Networks"]
@@ -72,6 +80,14 @@ The system consists of several core services that are initialized at startup and
7280
### Service Initialization Flow
7381

7482
```mermaid
83+
%%{init: {
84+
'theme': 'base',
85+
'themeVariables': {
86+
'background': '#ffffff',
87+
'mainBkg': '#ffffff',
88+
'primaryBorderColor': '#cccccc'
89+
}
90+
}}%%
7591
graph TD
7692
subgraph Entry Point
7793
MAIN[main.rs]
@@ -195,6 +211,14 @@ The following table describes the key responsibilities of each service in the Op
195211
The following _runtime flow_ illustrates how data moves through the system, from blockchain networks to notification channels. This sequence represents the core monitoring loop that executes for each configured network.
196212

197213
```mermaid
214+
%%{init: {
215+
'theme': 'base',
216+
'themeVariables': {
217+
'background': '#ffffff',
218+
'mainBkg': '#ffffff',
219+
'primaryBorderColor': '#cccccc'
220+
}
221+
}}%%
198222
sequenceDiagram
199223
participant BWS as BlockWatcherService
200224
participant BS as BlockStorage
@@ -316,7 +340,7 @@ The system implements comprehensive validation:
316340

317341

318342

319-
For configuration examples and best practices, see the [Configuration Guidelines](/monitor#configuration-guidelines) section in the user documentation.
343+
For configuration examples and best practices, see the [Configuration Guidelines](#configuration-guidelines) section in the user documentation.
320344

321345

322346
## Extensibility Points

0 commit comments

Comments
 (0)