Skip to content

Commit 7e4eae5

Browse files
improved to addres issues
1 parent 6a35e84 commit 7e4eae5

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

articles/time-series-insights/time-series-insights-update-how-to-shape-events.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,11 @@ During ingestion, payloads that contain nested columns (attributes) will be flat
4141

4242
```JSON
4343
"data": {
44-
"temperature": ...
45-
}
44+
"flow": 1.0172575712203979,
45+
},
4646
```
4747

48-
Becomes: `data_temperature` when flattened.
48+
Becomes: `data_flow` when flattened.
4949

5050
> [!IMPORTANT]
5151
> * Azure Time Series Insights Preview uses underscores (`_`) for column delineation.
@@ -175,16 +175,16 @@ Consider the following JSON:
175175
}
176176
```
177177

178-
In the example above, the flattened `data_flow` property would present a naming collision with the `data_flow` property.
178+
In the example above, the flattened `data["flow"]` property would present a naming collision with the `data_flow` property.
179179

180180
In this case, the *latest* property value would overwrite the earlier one.
181181

182182
> [!TIP]
183183
> Contact the Time Series Insights team for more assistance!
184184
185185
> [!WARNING]
186-
> In cases where duplicate properties are present in the same event payload due to flattening or
187-
> another mechanism, the latest property value is stored, over-writing any previous values.
186+
> * In cases where duplicate properties are present in the same (singular) event payload due to flattening or another mechanism, the latest > property value is stored, over-writing any previous values.
187+
> * Series of combined events will not override one another.
188188
189189
## Next steps
190190

0 commit comments

Comments
 (0)