-
Notifications
You must be signed in to change notification settings - Fork 192
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[AppInsights] updating dependency creation #1039
Conversation
</PropertyGroup> | ||
|
||
<Import Project="..\..\build\Common.props" /> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.Azure.Functions.Worker.Core" Version="1.7.0-preview1" /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Curious to know why we switched to package reference? Is it to lock this version of AI package to specific version of Worker.Core package?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, there's a small tweak in preview1 that we need for this package to work... but there's no need for me to keep revving that one now that I don't need additional changes. It was mostly a local dev improvement to lock this to a published package.
This will eventually go away and back to a proj reference once this is ready for GA.
/azp run |
You have several pipelines (over 10) configured to build pull requests in this repository. Specify which pipelines you would like to run by using /azp run [pipelines] command. You can specify multiple pipelines using a comma separated list. |
da56723
to
d79f3b8
Compare
/check-enforcer evaluate |
Fixes #998
Using App Insights
StartTelemetry
to create dependencies for proper hierarchy. This method does a bunch of work to check Activity trace ids and properly set up the operation and parent ids on telemetry.Original example of an isolated function calling into Table storage:
After this change (note how each entry is a child of the other):