Seeing lots of warnings coming from this code, indicating that we're often overwriting trace context values.
This doesn't seem right. We should investigate to see why this happens and if it should be a Warning.
FunctionsLogs
| where PreciseTimeStamp > ago(1d)
| where Level == 3
| where Summary contains "writing"
| where Source startswith "Worker.LanguageWorkerChannel."
| where Summary startswith "Overwriting"
| project PreciseTimeStamp, Level, Summary
| take 10