Skip to content

Commit 02aeddb

Browse files
committed
Comment out offending lines temporarily
1 parent 6df38e0 commit 02aeddb

3 files changed

Lines changed: 15 additions & 15 deletions

File tree

articles/iot-operations/connect-to-cloud/howto-dataflow-graphs-map.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ ai-usage: ai-assisted
1717

1818
A map transform takes each incoming message and produces an output message based on your rules. You can rename fields, reorganize them into new structures, compute derived values, or remove unwanted fields. Wildcard rules let you copy all fields at once.
1919

20-
For an overview of data flow graphs and how transforms compose in a pipeline, see [Data flow graphs overview](concept-dataflow-graphs.md).
20+
<!-- For an overview of data flow graphs and how transforms compose in a pipeline, see [Data flow graphs overview](concept-dataflow-graphs.md). -->
2121

2222
## Prerequisites
2323

@@ -228,7 +228,7 @@ To scale a sensor reading:
228228

229229
---
230230

231-
For the complete list of operators, functions, and advanced features, see [Expressions reference](concept-dataflow-graphs-expressions.md).
231+
<!-- For the complete list of operators, functions, and advanced features, see [Expressions reference](concept-dataflow-graphs-expressions.md). -->
232232

233233
## Copy all fields with wildcards
234234

@@ -393,7 +393,7 @@ The map transform applies the specific rule to `temperature` and copies all othe
393393

394394
## Use metadata fields
395395

396-
You can read from and write to message metadata like MQTT topics and user properties. See [Metadata fields](concept-dataflow-graphs-expressions.md#metadata-fields) in the expressions reference.
396+
<!-- You can read from and write to message metadata like MQTT topics and user properties. See [Metadata fields](concept-dataflow-graphs-expressions.md#metadata-fields) in the expressions reference. -->
397397

398398
# [Operations experience](#tab/portal)
399399

@@ -430,7 +430,7 @@ For a complete example of dynamic topic routing, see [Route messages to differen
430430

431431
## Use last known value and defaults
432432

433-
When sensor data arrives intermittently, you can fill in missing fields with the last known value or a static default. See [Last known value](concept-dataflow-graphs-expressions.md#last-known-value) and [Default values](concept-dataflow-graphs-expressions.md#default-values) in the expressions reference.
433+
<!-- When sensor data arrives intermittently, you can fill in missing fields with the last known value or a static default. See [Last known value](concept-dataflow-graphs-expressions.md#last-known-value) and [Default values](concept-dataflow-graphs-expressions.md#default-values) in the expressions reference. -->
434434

435435
# [Operations experience](#tab/portal)
436436

@@ -459,15 +459,15 @@ This rule uses the current value when present, falls back to the last known valu
459459

460460
## Enrich with external data
461461

462-
You can augment messages with data from an external state store by configuring datasets. For example, look up a device's metadata by its ID and include it in the output. For details, see [Enrich with external data](howto-dataflow-graphs-enrich.md).
462+
<!-- You can augment messages with data from an external state store by configuring datasets. For example, look up a device's metadata by its ID and include it in the output. For details, see [Enrich with external data](howto-dataflow-graphs-enrich.md). -->
463463

464464
## Full configuration example
465465

466466
Here's a complete map configuration that copies all fields, removes sensitive data, restructures a field, and computes a derived value:
467467

468468
# [Operations experience](#tab/portal)
469469

470-
![Screenshot of the operations experience map transform configuration panel showing multiple rules for wildcard, remove, restructure, compute, and merge.](media/howto-dataflow-graphs-map/map-transform-configuration.png)
470+
<!-- ![Screenshot of the operations experience map transform configuration panel showing multiple rules for wildcard, remove, restructure, compute, and merge.](media/howto-dataflow-graphs-map/map-transform-configuration.png) -->
471471

472472
In the Operations experience, create a data flow graph and add a map transform. In the map configuration panel, add rules to:
473473

@@ -572,14 +572,14 @@ The rules configuration is a JSON string placed as the `value` for the `rules` k
572572
}
573573
```
574574

575-
For the full `DataflowGraph` resource structure, see [Data flow graphs overview](concept-dataflow-graphs.md#how-configuration-works).
575+
<!-- For the full `DataflowGraph` resource structure, see [Data flow graphs overview](concept-dataflow-graphs.md#how-configuration-works). -->
576576

577577
---
578578

579579
## Next steps
580580

581-
- [Filter and route data](howto-dataflow-graphs-filter-route.md)
581+
<!-- - [Filter and route data](howto-dataflow-graphs-filter-route.md)
582582
- [Aggregate data over time](howto-dataflow-graphs-window.md)
583583
- [Enrich with external data](howto-dataflow-graphs-enrich.md)
584584
- [Route messages to different topics](howto-dataflow-graphs-topic-routing.md)
585-
- [Expressions reference](concept-dataflow-graphs-expressions.md)
585+
- [Expressions reference](concept-dataflow-graphs-expressions.md) -->

articles/iot-operations/connect-to-cloud/howto-dataflow-graphs-topic-routing.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Two pieces work together:
3030
1. **Inside the transform**: A map rule writes a string value to `$metadata.topic`.
3131
2. **In the destination**: The `dataDestination` field references `${outputTopic}`, which resolves to the value the transform wrote.
3232

33-
For more on metadata fields, see [Metadata fields](concept-dataflow-graphs-expressions.md#metadata-fields).
33+
<!-- For more on metadata fields, see [Metadata fields](concept-dataflow-graphs-expressions.md#metadata-fields). -->
3434

3535
## Option 1: Single map transform with a conditional expression
3636

@@ -381,7 +381,7 @@ If the topic variable can't be resolved (for example, `$metadata.topic` was neve
381381

382382
## Next steps
383383

384-
- [Transform data with map](howto-dataflow-graphs-map.md)
384+
<!-- - [Transform data with map](howto-dataflow-graphs-map.md)
385385
- [Filter and route data](howto-dataflow-graphs-filter-route.md)
386386
- [Expressions reference](concept-dataflow-graphs-expressions.md)
387-
- [Data flow graphs overview](concept-dataflow-graphs.md)
387+
- [Data flow graphs overview](concept-dataflow-graphs.md) -->

articles/iot-operations/connect-to-cloud/howto-dataflow-graphs-window.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ ai-usage: ai-assisted
1717

1818
A window transform collects messages over a fixed time interval and produces a single output message with aggregated values. Instead of forwarding every reading individually, you can compute statistics like averages, minimums, or counts and send one consolidated result downstream.
1919

20-
For an overview of data flow graphs and how transforms compose in a pipeline, see [Data flow graphs overview](concept-dataflow-graphs.md).
20+
<!-- For an overview of data flow graphs and how transforms compose in a pipeline, see [Data flow graphs overview](concept-dataflow-graphs.md). -->
2121

2222
## Prerequisites
2323

@@ -353,8 +353,8 @@ spec:
353353
## Next steps
354354

355355
- [Transform data with map](howto-dataflow-graphs-map.md)
356-
- [Filter and route data](howto-dataflow-graphs-filter-route.md)
356+
<!-- - [Filter and route data](howto-dataflow-graphs-filter-route.md)
357357
- [Enrich with external data](howto-dataflow-graphs-enrich.md)
358358
- [Expressions reference](concept-dataflow-graphs-expressions.md)
359359
- [Configure a source](howto-configure-dataflow-source.md)
360-
- [Configure a destination](howto-configure-dataflow-destination.md)
360+
- [Configure a destination](howto-configure-dataflow-destination.md) -->

0 commit comments

Comments
 (0)