Skip to content

Commit cfecfda

Browse files
committed
Fix build
1 parent 9033629 commit cfecfda

File tree

2 files changed

+30
-27
lines changed

2 files changed

+30
-27
lines changed

articles/iot-operations/connect-to-cloud/howto-dataflow-graph-wasm.md

Lines changed: 20 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -500,7 +500,8 @@ The following diagram shows the data flow through the various processing modules
500500

501501
:::image type="content" source="media/howto-dataflow-graph-wasm/wasm-dataflow-graph-complex.svg" alt-text="Diagram showing a complex data flow graph example with multiple modules" border="false":::
502502

503-
<!-- ```mermaid
503+
<!--
504+
```mermaid
504505
graph TD
505506
source["source"]
506507
delay["module-window/delay"]
@@ -517,24 +518,24 @@ graph TD
517518
accumulate_collection["module-collection/accumulate"]
518519
map_enrichment["module-enrichment/map (overtemp, topic)"]
519520
sink["sink"]
520-
521-
source --> delay
522-
delay --> branch_snapshot
523-
branch_snapshot -->|sensor data| branch_temp
524-
branch_snapshot -->|snapshot| map_format
525-
map_format --> map_snapshot
526-
map_snapshot --> accumulate_snapshot
527-
accumulate_snapshot --> concatenate
528-
branch_temp -->|temp| map_temp
529-
branch_temp -->|humidity| accumulate_humidity
530-
map_temp --> filter_temp
531-
filter_temp --> accumulate_temp
532-
accumulate_temp --> concatenate
533-
accumulate_humidity --> concatenate
534-
concatenate --> accumulate_collection
535-
accumulate_collection --> map_enrichment
536-
map_enrichment --> sink
537-
``` -->
521+
source - -> delay
522+
delay - -> branch_snapshot
523+
branch_snapshot - ->|sensor data| branch_temp
524+
branch_snapshot - ->|snapshot| map_format
525+
map_format - -> map_snapshot
526+
map_snapshot - -> accumulate_snapshot
527+
accumulate_snapshot - -> concatenate
528+
branch_temp - ->|temp| map_temp
529+
branch_temp - ->|humidity| accumulate_humidity
530+
map_temp - -> filter_temp
531+
filter_temp - -> accumulate_temp
532+
accumulate_temp - -> concatenate
533+
accumulate_humidity - -> concatenate
534+
concatenate - -> accumulate_collection
535+
accumulate_collection - -> map_enrichment
536+
map_enrichment - -> sink
537+
```
538+
-->
538539

539540
As shown in the diagram, data flows from a single source through multiple processing stages:
540541

articles/iot-operations/connect-to-cloud/howto-develop-wasm-modules.md

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -626,7 +626,8 @@ For example, this diagram illustrates the relationship between graph definitions
626626

627627
:::image type="content" source="media/howto-develop-wasm-modules/wasm-dataflow-overall-architecture.svg" alt-text="Diagram showing the relationship between graph definitions, WASM modules, and data flow graphs" border="false":::
628628

629-
<!-- ```mermaid
629+
<!--
630+
```mermaid
630631
graph LR
631632
subgraph "Development"
632633
YML[Graph Definition YAML]
@@ -645,15 +646,15 @@ graph LR
645646
subgraph "Data Flow Graph"
646647
MQTT[Source Endpoint]
647648
subgraph GDE["Graph Execution"]
648-
S[source] --> M1[temperature operator]
649-
M1 --> M2[filter operator]
650-
M2 --> M3[analytics operator]
651-
M3 --> K[sink]
649+
S[source] - -> M1[temperature operator]
650+
M1 - -> M2[filter operator]
651+
M2 - -> M3[analytics operator]
652+
M3 - -> K[sink]
652653
end
653654
DEST[Destination Endpoint]
654655
655-
MQTT --> S
656-
K --> DEST
656+
MQTT - -> S
657+
K - -> DEST
657658
end
658659
659660
YML -.-> OCI1
@@ -664,7 +665,8 @@ graph LR
664665
OCI2 -.-> M1
665666
OCI3 -.-> M2
666667
OCI4 -.-> M3
667-
``` -->
668+
```
669+
-->
668670

669671
### Registry deployment
670672

0 commit comments

Comments
 (0)