Python worker should report worker version in Kusto
See original GitHub issueQuerying with
FunctionsLogs
| where PreciseTimeStamp >= ago(1h)
| where RoleInstance contains {SOME_PYTHON_CONSUMPTION_INSTANCE}
| where Source contains "python"
The worker version column is missing.
Issue Analytics
- State:
- Created 4 years ago
- Comments:6 (3 by maintainers)
Top Results From Across the Web
Develop Python worker extensions for Azure Functions
Learn how to create and publish worker extensions that let you inject middleware behavior into Python functions running in Azure.
Read more >Azure function - "Did not find any initialized language workers"
I worked with an Azure support engineer who gave some pointers that could be generally useful: Python versions: if you have function runtime ......
Read more >How to Deploy to Kubernetes using Argo CD and GitOps
In order to install Argo CD, you should first have a valid Kubernetes configuration set up with kubectl , from which you can...
Read more >Running Python models in SAS using Kubernetes volumes ...
On the other hand it wouldn't make much sense if SAS would pre-install a Python runtime in the shipped container images – which...
Read more >Python: Building an image for a Flask app served from Gunicorn
In this article, I will show you how to build a Docker image . ... git checkout 1.0.0 # should report back '1.0.0'...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@AnatoliB - thanks for pointing out the space issue. This was not intentional. As long as system log is appended with right prefix: https://github.com/Azure/azure-functions-host/blob/dev/src/WebJobs.Script/Rpc/LanguageWorkerConstants.cs#L40 host will treat it as system log and we can see logs in kusto
Added in https://github.com/Azure/azure-functions-host/pull/5150