Skip to content

Commit

Permalink
[main] Update dependencies from dotnet/diagnostics (#6613)
Browse files Browse the repository at this point in the history
* Update dependencies from https://github.com/dotnet/diagnostics build 20240513.1

Microsoft.Diagnostics.Monitoring , Microsoft.Diagnostics.Monitoring.EventPipe , Microsoft.FileFormats
 From Version 8.0.0-preview.24259.1 -> To Version 8.0.0-preview.24263.1

* Adjust request rundown boolean to rundown keyword

---------

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Co-authored-by: Justin Anderson <jander@microsoft.com>
  • Loading branch information
3 people authored May 14, 2024
1 parent 47ba2bb commit 8a480fb
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 13 deletions.
12 changes: 6 additions & 6 deletions eng/Version.Details.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
<Uri>https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore</Uri>
<Sha>8e941eb42f819adb116b881195158b3887a70a1c</Sha>
</Dependency>
<Dependency Name="Microsoft.Diagnostics.Monitoring" Version="8.0.0-preview.24259.1">
<Dependency Name="Microsoft.Diagnostics.Monitoring" Version="8.0.0-preview.24263.1">
<Uri>https://github.com/dotnet/diagnostics</Uri>
<Sha>a9efc2e9a04c86be5f66995522f63679ced519c7</Sha>
<Sha>363760fa9a030cbd6c8eb73e7352c8728ba62a9a</Sha>
</Dependency>
<Dependency Name="Microsoft.Diagnostics.Monitoring.EventPipe" Version="8.0.0-preview.24259.1">
<Dependency Name="Microsoft.Diagnostics.Monitoring.EventPipe" Version="8.0.0-preview.24263.1">
<Uri>https://github.com/dotnet/diagnostics</Uri>
<Sha>a9efc2e9a04c86be5f66995522f63679ced519c7</Sha>
<Sha>363760fa9a030cbd6c8eb73e7352c8728ba62a9a</Sha>
</Dependency>
<Dependency Name="System.CommandLine" Version="2.0.0-beta4.24209.3">
<Uri>https://github.com/dotnet/command-line-api</Uri>
Expand Down Expand Up @@ -46,9 +46,9 @@
<Uri>https://github.com/dotnet/arcade</Uri>
<Sha>67d23f4ba1813b315e7e33c71d18b63475f5c5f8</Sha>
</Dependency>
<Dependency Name="Microsoft.FileFormats" Version="8.0.0-preview.24259.1">
<Dependency Name="Microsoft.FileFormats" Version="8.0.0-preview.24263.1">
<Uri>https://github.com/dotnet/diagnostics</Uri>
<Sha>a9efc2e9a04c86be5f66995522f63679ced519c7</Sha>
<Sha>363760fa9a030cbd6c8eb73e7352c8728ba62a9a</Sha>
</Dependency>
<Dependency Name="Microsoft.NETCore.App.Runtime.win-x64" Version="8.0.1" CoherentParentDependency="Microsoft.Dotnet.Sdk.Internal">
<Uri>https://dev.azure.com/dnceng/internal/_git/dotnet-runtime</Uri>
Expand Down
6 changes: 3 additions & 3 deletions eng/Versions.props
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@
<!-- dotnet/command-line-api references -->
<SystemCommandLineVersion>2.0.0-beta4.24209.3</SystemCommandLineVersion>
<!-- dotnet/diagnostics references -->
<MicrosoftDiagnosticsMonitoringVersion>8.0.0-preview.24259.1</MicrosoftDiagnosticsMonitoringVersion>
<MicrosoftDiagnosticsMonitoringEventPipeVersion>8.0.0-preview.24259.1</MicrosoftDiagnosticsMonitoringEventPipeVersion>
<MicrosoftDiagnosticsMonitoringVersion>8.0.0-preview.24263.1</MicrosoftDiagnosticsMonitoringVersion>
<MicrosoftDiagnosticsMonitoringEventPipeVersion>8.0.0-preview.24263.1</MicrosoftDiagnosticsMonitoringEventPipeVersion>
<!-- dotnet/installer references -->
<MicrosoftDotnetSdkInternalVersion>8.0.103-servicing.24114.15</MicrosoftDotnetSdkInternalVersion>
<!-- dotnet/roslyn-analyzers -->
Expand All @@ -67,7 +67,7 @@
<MicrosoftNETCoreAppRuntimewinx64Version>8.0.1</MicrosoftNETCoreAppRuntimewinx64Version>
<VSRedistCommonNetCoreSharedFrameworkx6480Version>8.0.1-servicing.23580.1</VSRedistCommonNetCoreSharedFrameworkx6480Version>
<!-- dotnet/symstore references -->
<MicrosoftFileFormatsVersion>8.0.0-preview.24259.1</MicrosoftFileFormatsVersion>
<MicrosoftFileFormatsVersion>8.0.0-preview.24263.1</MicrosoftFileFormatsVersion>
</PropertyGroup>
<PropertyGroup Label="Runtime Versions">
<MicrosoftAspNetCoreApp31Version>$(MicrosoftNETCoreApp31Version)</MicrosoftAspNetCoreApp31Version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public EventStacksPipeline(DiagnosticsClient client, EventStacksPipelineSettings

protected override MonitoringSourceConfiguration CreateConfiguration()
{
return new EventPipeProviderSourceConfiguration(requestRundown: false, bufferSizeInMB: 256, new[]
return new EventPipeProviderSourceConfiguration(rundownKeyword: 0, bufferSizeInMB: 256, new[]
{
new EventPipeProvider(CallStackEvents.Provider, EventLevel.LogAlways)
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public static MonitoringSourceConfiguration GetTraceConfiguration(Models.EventPi

return new EventPipeProviderSourceConfiguration(
providers: providers.ToArray(),
requestRundown: requestRundown,
rundownKeyword: requestRundown ? EventPipeSession.DefaultRundownKeyword : 0,
bufferSizeInMB: bufferSizeInMB);
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public EventExceptionsPipeline(DiagnosticsClient client, EventExceptionsPipeline

protected override MonitoringSourceConfiguration CreateConfiguration()
{
return new EventPipeProviderSourceConfiguration(requestRundown: false, bufferSizeInMB: 64, new[]
return new EventPipeProviderSourceConfiguration(rundownKeyword: 0, bufferSizeInMB: 64, new[]
{
new EventPipeProvider(ExceptionEvents.SourceName, EventLevel.Informational, (long)EventKeywords.All)
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public EventParameterCapturingPipeline(IpcEndpoint endpoint, EventParameterCaptu

protected override MonitoringSourceConfiguration CreateConfiguration()
{
return new EventPipeProviderSourceConfiguration(requestRundown: false, bufferSizeInMB: 64, new[]
return new EventPipeProviderSourceConfiguration(rundownKeyword: 0, bufferSizeInMB: 64, new[]
{
new EventPipeProvider(ParameterCapturingEvents.SourceName, EventLevel.Informational, (long)EventKeywords.All)
});
Expand Down

0 comments on commit 8a480fb

Please sign in to comment.