Skip to content
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

Building a NET7/NET8 iOS project hangs with LLVM #20210

Closed
takla21 opened this issue Feb 27, 2024 · 14 comments · Fixed by #20256
Closed

Building a NET7/NET8 iOS project hangs with LLVM #20210

takla21 opened this issue Feb 27, 2024 · 14 comments · Fixed by #20256
Assignees
Labels
bug If an issue is a bug or a pull request a bug fix
Milestone

Comments

@takla21
Copy link

takla21 commented Feb 27, 2024

Steps to Reproduce

  1. Have a net8.0-android/net8.0-ios project with the following csproj:
<Project Sdk="Microsoft.NET.Sdk">
	<PropertyGroup>
		<LangVersion>11.0</LangVersion>
		<TargetFrameworks>net8.0-android;net8.0-ios</TargetFrameworks>
		<SingleProject>true</SingleProject>
		<GenerateDocumentationFile>true</GenerateDocumentationFile>
		<OutputType>Exe</OutputType>
		<IsUnoHead>true</IsUnoHead>
		<SupportedOSPlatformVersion Condition="'$(TargetFramework)' == 'net8.0-android'">29.0</SupportedOSPlatformVersion>
		<SupportedOSPlatformVersion Condition="'$(TargetFramework)' == 'net8.0-ios'">14.2</SupportedOSPlatformVersion>
		<NoWarn>Uno0001</NoWarn>
		<FirebaseCrashlyticsUploadSymbolsEnabled>True</FirebaseCrashlyticsUploadSymbolsEnabled>
	</PropertyGroup>
	<!-- Linker configuration. -->
	<PropertyGroup>
		<PublishTrimmed>True</PublishTrimmed>
		<TrimMode>partial</TrimMode>
	</PropertyGroup>
	<ItemGroup>
		<PackageReference Include="Chinook.DataLoader.Uno.WinUI" Version="1.2.0" />
		<PackageReference Include="Chinook.DynamicMvvm.Uno.WinUI" Version="1.1.2" />
		<PackageReference Include="Chinook.SectionsNavigation.Uno.WinUI" Version="2.1.2" />
		<PackageReference Include="ExtendedSplashScreen.Uno.WinUI" Version="1.0.2" />
		<PackageReference Include="MessageDialogService.Uno.WinUI" Version="0.6.0-dev.58" />
		<PackageReference Include="Nventive.View.Uno.WinUI" Version="0.5.0-dev.70" />
		<PackageReference Include="Reactive.Annex.Uno.WinUI" Version="0.6.0-dev.50" />
		<PackageReference Include="ReviewService.NativePrompters" Version="1.0.0" />
		<PackageReference Include="Uno.CommunityToolkit.WinUI" Version="7.1.100" />
		<PackageReference Include="Uno.CommunityToolkit.WinUI.UI.Controls" Version="7.1.100" />
		<PackageReference Include="Uno.Toolkit.WinUI.Material" Version="4.2.22" />
		<PackageReference Include="Uno.WinUI" Version="4.10.37" />
		<PackageReference Include="Uno.WinUI.RemoteControl" Version="4.10.37" Condition="'$(Configuration)'=='Debug'" />
		<PackageReference Include="Uno.WinUI.Lottie" Version="4.10.37" />
		<PackageReference Include="Uno.UI.Adapter.Microsoft.Extensions.Logging" Version="4.10.37" />
		<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="7.0.0" />
		<PackageReference Include="Serilog.Sinks.Xamarin" Version="1.0.0" />
		<PackageReference Include="Serilog.Sinks.File" Version="5.0.0" />
		<PackageReference Include="Xamarin.Build.Download" Version="0.11.4" />
		<PackageReference Include="OneSignalSDK.DotNet" Version="4.3.3" />
		<PackageReference Include="Microsoft.Maui.Essentials" Version="8.0.3" />
		<!-- And many more internal packages that targets net6.0, net6.0-android & net6.0-ios -->
	</ItemGroup>
	<ItemGroup>
		<ProjectReference Include="..\ProjectNa.Access\ProjectName.Access.csproj" />
		<ProjectReference Include="..\ProjectName.Business\ProjectName.Business.csproj" />
		<ProjectReference Include="..\ProjectName.Presentation\ProjectName.Presentation.csproj" />
	</ItemGroup>
	<!-- Disable Bugsee for Production. -->
	<ItemGroup Condition="'$(ApplicationEnvironment)'!='Production'">
		<PackageReference Include="Bugsee" Version="3.0.0" />
	</ItemGroup>
	<ItemGroup>
		<Folder Include="Android\Resources\color\" />
	</ItemGroup>
	<Choose>
		<When Condition="'$(TargetFramework)'=='net8.0-android'">
			<PropertyGroup>
				<AndroidCreatePackagePerAbi>False</AndroidCreatePackagePerAbi>
				<BundleAssemblies>False</BundleAssemblies>
			</PropertyGroup>

			<Choose>
				<When Condition="'$(Configuration)'=='Debug'">
					<PropertyGroup>
						<AndroidUseSharedRuntime>True</AndroidUseSharedRuntime>
						<UseHighDPIResources>False</UseHighDPIResources>
						<EmbedAssembliesIntoApk>False</EmbedAssembliesIntoApk>
						<EnableLLVM>False</EnableLLVM>
						<AndroidEnableProfiledAot>False</AndroidEnableProfiledAot>
						<AndroidDexTool>d8</AndroidDexTool>
						<Optimize>False</Optimize>
						<RunAOTCompilation>False</RunAOTCompilation>
					</PropertyGroup>
				</When>
				<When Condition="'$(Configuration)'=='Release'">
					<PropertyGroup>
						<EmbedAssembliesIntoApk>True</EmbedAssembliesIntoApk>
						<AndroidManagedSymbols>True</AndroidManagedSymbols>
						<AndroidEnableSGenConcurrent>True</AndroidEnableSGenConcurrent>
						<AndroidAotAdditionalArguments>nodebug,no-write-symbols</AndroidAotAdditionalArguments>
						<AndroidUseDefaultAotProfile>False</AndroidUseDefaultAotProfile>
						<AndroidUseAapt2>True</AndroidUseAapt2>
					</PropertyGroup>
					<Choose>
						<When Condition="'$(IsLightBuild)'=='True'">
							<!-- Build Optimization for LightBuild (Faster Builds in Pull Requests). -->
							<PropertyGroup>
								<AndroidEnableProfiledAot>False</AndroidEnableProfiledAot>
								<EnableLLVM>False</EnableLLVM>
								<Optimize>False</Optimize>
								<RunAOTCompilation>False</RunAOTCompilation>
							</PropertyGroup>
						</When>
						<Otherwise>
							<PropertyGroup>
								<!-- 
									Profiled AOT has been disabled, because it causing issues when building on release since targetting NET8. 
									See https://github.com/xamarin/xamarin-android/issues/8739 for more details.
								-->
								<!--<AndroidEnableProfiledAot>True</AndroidEnableProfiledAot>-->
								<!-- LLVM currently doesn't work with AOT enabled and custom profile. -->
								<!-- See https://github.com/dotnet/runtime/issues/74021 for more details. -->
								<!-- See https://github.com/xamarin/xamarin-android/issues/7352 for more details. -->
								<EnableLLVM>False</EnableLLVM>
								<Optimize>True</Optimize>
								<RunAOTCompilation>True</RunAOTCompilation>
							</PropertyGroup>
						</Otherwise>
					</Choose>
				</When>
			</Choose>
			<ItemGroup>
				<!-- And many more internal packages that targets net6.0-android -->
				<PackageReference Include="Uno.UniversalImageLoader" Version="1.9.36" />
				<PackageReference Include="Mono.AotProfiler.Android" Version="7.0.0" />
				<PackageReference Include="Xamarin.Kotlin.StdLib.Jdk8" Version="1.9.20" />
				<PackageReference Include="Xamarin.Firebase.Crashlytics" Version="118.4.3.1" />
				<PackageReference Include="Xamarin.Firebase.Analytics" Version="121.3.0.3" />
				<PackageReference Include="Xamarin.Firebase.Perf" Version="120.5.0" />
				<PackageReference Include="Xamarin.GooglePlayServices.Wallet" Version="119.2.1.1" />
				<PackageReference Include="Xamarin.AndroidX.Lifecycle.LiveData" Version="2.6.1.2" />
				<PackageReference Include="Xamarin.GooglePlayServices.Location" Version="121.0.1.3" />

				<!-- Those two packages are mandatory, otherwise, we can't compile with latest AndroidX packages. See https://github.com/xamarin/AndroidX/issues/764 for more details. -->
				<PackageReference Include="Xamarin.AndroidX.Collection.Ktx" Version="1.3.0.1" />
				<PackageReference Include="Xamarin.AndroidX.Activity.Ktx" Version="1.8.0.1" />
			</ItemGroup>
			<ItemGroup>
				<!-- 
					Profiled AOT has been disabled, because it causing issues when building on release since targetting NET8. 
					See https://github.com/xamarin/xamarin-android/issues/8739 for more details.
				-->
				<!--<AndroidAotProfile Include="custom.aprof" />-->
				<AndroidEnvironment Include="Android\environment.conf" />
				<TrimmerRootDescriptor Include="Android\LinkerExclusions.xml" />
			</ItemGroup>

			<!-- Android resources. -->
			<!-- Shared resources. -->
			<ItemGroup>
				<AndroidResource Include="Android\Resources\values\Colors.xml" />
				<AndroidResource Include="Android\Resources\values\Styles.xml" />
				<AndroidResource Include="Android\Resources\drawable\splash.xml" />
				<AndroidResource Include="Android\Resources\xml\file_paths.xml" />
			</ItemGroup>

			<!-- ApplicationFlavor specific resources. -->
			<ItemGroup>
				<AndroidResource Include="Android\Resources_$(ApplicationFlavor)\drawable\*.*">
					<Link>Android\Resources\drawable\%(FileName)%(Extension)</Link>
				</AndroidResource>
				<AndroidResource Include="Android\Resources_$(ApplicationFlavor)\drawable-*dpi\*.*">
					<Link>Android\Resources\%(RecursiveDir)%(FileName)%(Extension)</Link>
				</AndroidResource>
				<AndroidResource Include="Android\Resources_$(ApplicationFlavor)\mipmap-*dpi\*.*">
					<Link>Android\Resources\%(RecursiveDir)%(FileName)%(Extension)</Link>
				</AndroidResource>
				<AndroidResource Include="Android\Resources_$(ApplicationFlavor)\values\Strings.xml">
					<Link>Android\Resources\values\Strings.xml</Link>
				</AndroidResource>
			</ItemGroup>

			<!-- Network security configuration -->
			<ItemGroup>
				<AndroidResource Include="Android\Resources\xml\network_security_config.xml" />
			</ItemGroup>
			<!-- Android Firebase configuration. -->
			<ItemGroup>
				<GoogleServicesJson Include="Android\Resources_$(ApplicationFlavor)\google-services.prod.json">
					<Link>google-services.json</Link>
				</GoogleServicesJson>
			</ItemGroup>
			<!-- Google api key -->
			<ItemGroup>
				<AndroidResource Include="Android\Resources\values\maps.xml" />
			</ItemGroup>
		</When>
		<When Condition="'$(TargetFramework)'=='net8.0-ios'">
			<PropertyGroup>
				<MtouchExtraArgs>$(MtouchExtraArgs) --setenv=MONO_GC_PARAMS=soft-heap-limit=512m,nursery-size=64m,evacuation-threshold=66,major=marksweep,concurrent-sweep</MtouchExtraArgs>
				<MtouchExtraArgs>$(MtouchExtraArgs) --xml=./iOS/LinkerExclusions.xml --linkskip=$(AssemblyName)</MtouchExtraArgs>
				<!-- See https://github.com/unoplatform/uno/issues/9430 for more details. -->
				<MtouchExtraArgs>$(MtouchExtraArgs) --registrar:static</MtouchExtraArgs>
				<!-- See https://github.com/xamarin/xamarin-macios/issues/14812 for more details. -->
				<MtouchExtraArgs>$(MtouchExtraArgs) --marshal-objectivec-exceptions:disable</MtouchExtraArgs>
				<CodesignEntitlements>iOS\Entitlements.plist</CodesignEntitlements>
				<!-- Workaround for clang++ error on iOS simulator on ARM base macOS system. See "https://github.com/dotnet/maui/issues/16778#issuecomment-1683343255" for more detail. -->
				<ForceSimulatorX64ArchitectureInIDE>true</ForceSimulatorX64ArchitectureInIDE>
			</PropertyGroup>
			<Choose>
				<When Condition="'$(Configuration)'=='Debug'">
					<PropertyGroup>
						<MtouchDebug>True</MtouchDebug>
						<MtouchExtraArgs>$(MtouchExtraArgs) --setenv=MONO_LOG_LEVEL=debug --setenv=MONO_LOG_MASK=gc</MtouchExtraArgs>
						<Optimize>False</Optimize>
						<ProvisioningType>manual</ProvisioningType>
					</PropertyGroup>
					<PropertyGroup Condition="'$(Platform)'=='iPhone'">
						<CodesignKey>iPhone Developer</CodesignKey>
					</PropertyGroup>
				</When>
				<When Condition="'$(Configuration)'=='Release'">
					<PropertyGroup>
						<BuildIpa>True</BuildIpa>
						<CodesignKey>iPhone Distribution</CodesignKey>
						<RuntimeIdentifier>ios-arm64</RuntimeIdentifier>
						<OptimizePNGs>True</OptimizePNGs>
						<MtouchUseLlvm>True</MtouchUseLlvm>
						<MtouchUseThumb>True</MtouchUseThumb>
						<MtouchNoSymbolStrip>False</MtouchNoSymbolStrip>
						<Optimize>True</Optimize>
					</PropertyGroup>
				</When>
			</Choose>
			<ItemGroup>
				<PackageReference Include="Uno.Extensions.Logging.OSLog" Version="1.4.0" />
				<PackageReference Include="Xamarin.Firebase.iOS.Crashlytics" Version="8.10.0.3" />
				<PackageReference Include="Xamarin.Firebase.iOS.Analytics" Version="8.10.0.3" />
				<PackageReference Include="Xamarin.Firebase.iOS.PerformanceMonitoring" Version="8.10.0.3" />

				<!-- The latest version of SkiaSharp is required with Firebase. See https://github.com/unoplatform/uno/discussions/14009 for more details -->
				<PackageReference Include="SkiaSharp" Version="2.88.6" />
			</ItemGroup>
			<ItemGroup>
				<TrimmerRootDescriptor Include="iOS\LinkerExclusions.xml" />
			</ItemGroup>

			<!-- iOS resources -->
			<!-- Shared resources. -->
			<ItemGroup>
				<!--
				Removing this fix release build.
				<InterfaceDefinition Include="iOS\LaunchScreen.storyboard" />
				-->
				<BundleResource Include="iOS\Resources\en.lproj\AddToWallet.png" />
				<BundleResource Include="iOS\Resources\en.lproj\AddToWallet%403x.png" />
				<BundleResource Include="iOS\Resources\en.lproj\AddToWallet%402x.png" />
				<BundleResource Include="iOS\Resources\fr.lproj\AddToWallet.png.png" />
				<BundleResource Include="iOS\Resources\fr.lproj\AddToWallet%402x.png" />
				<BundleResource Include="iOS\Resources\fr.lproj\AddToWallet%403x.png" />
			</ItemGroup>
			<!-- ApplicationFlavor specific resources. -->
			<ItemGroup>
				<BundleResource Include="iOS\Resources_$(ApplicationFlavor)\Assets\**\*.*">
					<Link>iOS\Resources\Assets\%(RecursiveDir)%(FileName)%(Extension)</Link>
				</BundleResource>
				<BundleResource Include="iOS\Resources_$(ApplicationFlavor)\en.lproj\**\*.*">
					<Link>iOS\Resources\en.lproj\%(RecursiveDir)%(FileName)%(Extension) </Link>
				</BundleResource>
				<BundleResource Include="iOS\Resources_$(ApplicationFlavor)\fr.lproj\**\*.*">
					<Link>iOS\Resources\fr.lproj\%(RecursiveDir)%(FileName)%(Extension) </Link>
				</BundleResource>
				<ImageAsset Include="iOS\Resources_$(ApplicationFlavor)\Media.xcassets\**\*.*">
					<Link>Resources\Media.xcassets\%(RecursiveDir)%(FileName)%(Extension)</Link>
					<Visible>false</Visible>
				</ImageAsset>
			</ItemGroup>
			<!-- iOS Firebase configuration. -->
			<ItemGroup>
				<BundleResource Include="iOS\Resources_$(ApplicationFlavor)\GoogleService-Info.plist">
					<Link>GoogleService-Info.plist</Link>
				</BundleResource>
			</ItemGroup>
		</When>
	</Choose>
	<Import Project="..\ProjectName.Shared.Views\ProjectName.Shared.Views.projitems" Label="Shared" />

	<!-- Workaround to remove bitcode introduced by OneSignal. See https://github.com/OneSignal/OneSignal-DotNet-SDK/issues/27 for more details. -->
	<Import Project="..\..\..\BitcodeRemovalWorkaround.targets" Condition="'$(TargetFramework)' == 'net8.0-ios'" />
</Project>
  1. Try to publish that project with the following command:
    cd ${{ parameters.pathToSrc }}/app/${{ parameters.solutionName }}.Mobile
    dotnet publish -f:net8.0-ios -c:Release /p:ApplicationFlavor=$(ApplicationFlavor) /p:ApplicationIdentifier=$(ApplicationIdentifier) /p:CodesignProvision=$(provisioningProfile.provisioningProfileUuid) /p:ArchiveOnBuild=true /bl:$(build.ArtifactStagingDirectory)/build-net8.0-ios.binlog "/p:InformationalVersion=$GITVERSION_INFORMATIONALVERSION" /p:IsLightBuild=false /p:FirebaseCrashlyticsUploadSymbolsEnabled=false

Expected Behavior

The project should not hang while building.

Actual Behavior

When it targets net7.0-ios, it hangs intermittently. See microsoft/azure-pipelines-agent#4677.
When it targets net8.0-ios, it always hangs with the following message:

  ProjectName.Mobile -> /Users/runner/work/1/s/src/app/ProjectName.Mobile/bin/Release/net7.0-ios/ios-arm64/ProjectName.Mobile.dll
/Users/runner/hostedtoolcache/dotnet/packs/Microsoft.iOS.Sdk/16.4.7099/targets/Xamarin.Shared.Sdk.targets(1499,3): warning : The file '/Users/runner/.nuget/packages/parasol.activities/0.40.5/lib/net6.0-ios16.1/Parasol.Activities.uprimarker' does not specify a 'PublishFolderType' metadata, and a default value could not be calculated. The file will not be copied to the app bundle. [/Users/runner/work/1/s/src/app/ProjectName.Mobile/ProjectName.Mobile.csproj::TargetFramework=net7.0-ios]
/Users/runner/hostedtoolcache/dotnet/packs/Microsoft.iOS.Sdk/16.4.7099/targets/Xamarin.Shared.Sdk.targets(1499,3): warning : The file '/Users/runner/.nuget/packages/uno.fonts.fluent/2.3.0/lib/netstandard1.0/Uno.Fonts.Fluent.uprimarker' does not specify a 'PublishFolderType' metadata, and a default value could not be calculated. The file will not be copied to the app bundle. [/Users/runner/work/1/s/src/app/ProjectName.Mobile/ProjectName.Mobile.csproj::TargetFramework=net7.0-ios]
/Users/runner/hostedtoolcache/dotnet/packs/Microsoft.iOS.Sdk/16.4.7099/targets/Xamarin.Shared.Sdk.targets(1499,3): warning : The file '/Users/runner/.nuget/packages/uno.fonts.roboto/2.2.2/lib/netstandard2.0/Uno.Fonts.Roboto.uprimarker' does not specify a 'PublishFolderType' metadata, and a default value could not be calculated. The file will not be copied to the app bundle. [/Users/runner/work/1/s/src/app/ProjectName.Mobile/ProjectName.Mobile.csproj::TargetFramework=net7.0-ios]
/Users/runner/hostedtoolcache/dotnet/packs/Microsoft.iOS.Sdk/16.4.7099/targets/Xamarin.Shared.Sdk.targets(1499,3): warning : The file '/Users/runner/.nuget/packages/uno.toolkit.winui/4.2.22/lib/net6.0-ios15.4/Uno.Toolkit.WinUI.uprimarker' does not specify a 'PublishFolderType' metadata, and a default value could not be calculated. The file will not be copied to the app bundle. [/Users/runner/work/1/s/src/app/ProjectName.Mobile/ProjectName.Mobile.csproj::TargetFramework=net7.0-ios]
/Users/runner/hostedtoolcache/dotnet/packs/Microsoft.iOS.Sdk/16.4.7099/targets/Xamarin.Shared.Sdk.targets(1499,3): warning : The file '/Users/runner/.nuget/packages/uno.toolkit.winui.material/4.2.22/lib/net6.0-ios15.4/Uno.Toolkit.WinUI.Material.uprimarker' does not specify a 'PublishFolderType' metadata, and a default value could not be calculated. The file will not be copied to the app bundle. [/Users/runner/work/1/s/src/app/ProjectName.Mobile/ProjectName.Mobile.csproj::TargetFramework=net7.0-ios]
/Users/runner/hostedtoolcache/dotnet/packs/Microsoft.iOS.Sdk/16.4.7099/targets/Xamarin.Shared.Sdk.targets(1499,3): warning : The file '/Users/runner/work/1/s/src/app/ProjectName.Access/bin/Release/net7.0/ProjectName.Access.xml' does not specify a 'PublishFolderType' metadata, and a default value could not be calculated. The file will not be copied to the app bundle. [/Users/runner/work/1/s/src/app/ProjectName.Mobile/ProjectName.Mobile.csproj::TargetFramework=net7.0-ios]
/Users/runner/hostedtoolcache/dotnet/packs/Microsoft.iOS.Sdk/16.4.7099/targets/Xamarin.Shared.Sdk.targets(1499,3): warning : The file '/Users/runner/work/1/s/src/app/ProjectName.Business/bin/Release/net7.0/ProjectName.Business.xml' does not specify a 'PublishFolderType' metadata, and a default value could not be calculated. The file will not be copied to the app bundle. [/Users/runner/work/1/s/src/app/ProjectName.Mobile/ProjectName.Mobile.csproj::TargetFramework=net7.0-ios]
/Users/runner/hostedtoolcache/dotnet/packs/Microsoft.iOS.Sdk/16.4.7099/targets/Xamarin.Shared.Sdk.targets(1499,3): warning : The file '/Users/runner/work/1/s/src/app/ProjectName.Presentation/bin/Release/net7.0/ProjectName.Presentation.xml' does not specify a 'PublishFolderType' metadata, and a default value could not be calculated. The file will not be copied to the app bundle. [/Users/runner/work/1/s/src/app/ProjectName.Mobile/ProjectName.Mobile.csproj::TargetFramework=net7.0-ios]
/Users/runner/hostedtoolcache/dotnet/packs/Microsoft.iOS.Sdk/16.4.7099/targets/Xamarin.Shared.Sdk.targets(1499,3): warning : The file 'bin/Release/net7.0-ios/ios-arm64/ProjectName.Mobile.xml' does not specify a 'PublishFolderType' metadata, and a default value could not be calculated. The file will not be copied to the app bundle. [/Users/runner/work/1/s/src/app/ProjectName.Mobile/ProjectName.Mobile.csproj::TargetFramework=net7.0-ios]
  /Applications/Xcode_14.2.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_strip
  /Applications/Xcode_14.2.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_strip
  Optimizing assemblies for size may change the behavior of the app. Be sure to test after publishing. See: https://aka.ms/dotnet-illink
  Optimizing assemblies for size. This process might take a while.
ILLINK : warning MT0079: The recommended Xcode version for Microsoft.iOS 16.4.7099 is Xcode 14.3 or later. The current Xcode version (found in /Applications/Xcode_14.2.app/Contents/Developer) is 14.2. [/Users/runner/work/1/s/src/app/ProjectName.Mobile/ProjectName.Mobile.csproj::TargetFramework=net7.0-ios]
  		
./iOS/LinkerExclusions.xml(9,3): warning IL2007: Could not resolve assembly 'ProjectName.DataAccess'. [/Users/runner/work/1/s/src/app/ProjectName.Mobile/ProjectName.Mobile.csproj::TargetFramework=net7.0-ios]
iOS/LinkerExclusions.xml(9,3): warning IL2007: Could not resolve assembly 'ProjectName.DataAccess'. [/Users/runner/work/1/s/src/app/ProjectName.Mobile/ProjectName.Mobile.csproj::TargetFramework=net7.0-ios]
/Users/runner/.nuget/packages/xamarin.firebase.ios.core/8.10.0.3/lib/net6.0-ios15.4/Firebase.Core.resources/GoogleUtilitiesComponents.xcframework/ios-arm64/GoogleUtilitiesComponents.framework/GoogleUtilitiesComponents : warning MT7091: The framework /Users/runner/.nuget/packages/xamarin.firebase.ios.core/8.10.0.3/lib/net6.0-ios15.4/Firebase.Core.resources/GoogleUtilitiesComponents.xcframework/ios-arm64/GoogleUtilitiesComponents.framework is a framework of static libraries, and will not be copied to the app. [/Users/runner/work/1/s/src/app/ProjectName.Mobile/ProjectName.Mobile.csproj::TargetFramework=net7.0-ios]
/Users/runner/Library/Caches/XamarinBuildDownload/FAnlytcs-8.9.1/FirebaseAnalytics-8.9.1/Frameworks/FirebaseAnalytics.xcframework/ios-arm64_armv7/FirebaseAnalytics.framework/FirebaseAnalytics : warning MT7091: The framework /Users/runner/Library/Caches/XamarinBuildDownload/FAnlytcs-8.9.1/FirebaseAnalytics-8.9.1/Frameworks/FirebaseAnalytics.xcframework/ios-arm64_armv7/FirebaseAnalytics.framework is a framework of static libraries, and will not be copied to the app. [/Users/runner/work/1/s/src/app/ProjectName.Mobile/ProjectName.Mobile.csproj::TargetFramework=net7.0-ios]
/Users/runner/Library/Caches/XamarinBuildDownload/GAppM-8.9.1/GoogleAppMeasurement-8.9.1/Frameworks/GoogleAppMeasurement.xcframework/ios-arm64_armv7/GoogleAppMeasurement.framework/GoogleAppMeasurement : warning MT7091: The framework /Users/runner/Library/Caches/XamarinBuildDownload/GAppM-8.9.1/GoogleAppMeasurement-8.9.1/Frameworks/GoogleAppMeasurement.xcframework/ios-arm64_armv7/GoogleAppMeasurement.framework is a framework of static libraries, and will not be copied to the app. [/Users/runner/work/1/s/src/app/ProjectName.Mobile/ProjectName.Mobile.csproj::TargetFramework=net7.0-ios]
/Users/runner/Library/Caches/XamarinBuildDownload/GMps-6.0.1/Base/Frameworks/GoogleMapsBase.framework/GoogleMapsBase : warning MT7091: The framework /Users/runner/Library/Caches/XamarinBuildDownload/GMps-6.0.1/Base/Frameworks/GoogleMapsBase.framework is a framework of static libraries, and will not be copied to the app. [/Users/runner/work/1/s/src/app/ProjectName.Mobile/ProjectName.Mobile.csproj::TargetFramework=net7.0-ios]
/Users/runner/Library/Caches/XamarinBuildDownload/GMps-6.0.1/Maps/Frameworks/GoogleMapsCore.framework/GoogleMapsCore : warning MT7091: The framework /Users/runner/Library/Caches/XamarinBuildDownload/GMps-6.0.1/Maps/Frameworks/GoogleMapsCore.framework is a framework of static libraries, and will not be copied to the app. [/Users/runner/work/1/s/src/app/ProjectName.Mobile/ProjectName.Mobile.csproj::TargetFramework=net7.0-ios]
/Users/runner/Library/Caches/XamarinBuildDownload/GMps-6.0.1/Maps/Frameworks/GoogleMaps.framework/GoogleMaps : warning MT7091: The framework /Users/runner/Library/Caches/XamarinBuildDownload/GMps-6.0.1/Maps/Frameworks/GoogleMaps.framework is a framework of static libraries, and will not be copied to the app. [/Users/runner/work/1/s/src/app/ProjectName.Mobile/ProjectName.Mobile.csproj::TargetFramework=net7.0-ios]
##[error]The Operation will be canceled. The next steps may not contain expected logs.
##[error]The operation was canceled.
Finishing: Build project for Release - net7.0-ios

Environment

It's mostly happening on our Azure DevOps CI, which is using Microsoft hosted agents. I've tried with the following:

  1. macos-12: https://github.com/actions/runner-images/blob/main/images/macos/macos-12-Readme.md
  2. macos-13: https://github.com/actions/runner-images/blob/main/images/macos/macos-13-Readme.md
@takla21
Copy link
Author

takla21 commented Feb 27, 2024

Forgot to mention it in the OP, but the hang issue seems to happen when MtouchUseLlvm is set to true

@takla21 takla21 changed the title Building a NET7/NET8 iOS project hangs Building a NET7/NET8 iOS project hangs with LLVM Feb 27, 2024
@rolfbjarne
Copy link
Member

It's mostly happening on our Azure DevOps CI

  • Have you ever seen it during local builds?
  • When it works, how long time does it take to build?
  • When it time outs, how long is the timeout?
  • Have you ever seen it with MtouchUseLlvm=false?

@rolfbjarne rolfbjarne added the need-info Waiting for more information before the bug can be investigated label Feb 28, 2024
@rolfbjarne rolfbjarne added this to the Future milestone Feb 28, 2024
@takla21
Copy link
Author

takla21 commented Feb 28, 2024

@rolfbjarne

* Have you ever seen it during local builds?

* When it works, how long time does it take to build?

* When it time outs, how long is the timeout?

* Have you ever seen it with `MtouchUseLlvm=false`?
  • I haven't tried to reproduce it locally, I will though, and come back to you
  • I've seen successfully completed at in between ~35min - ~59min
  • Looking at multiple instances, at around ~20min it starts to hang logs wise
  • Since I've discovered that MtouchUseLlvm=false resolved the hanging issues (yesterday), I haven't seen any hangs

@microsoft-github-policy-service microsoft-github-policy-service bot added need-attention An issue requires our attention/response and removed need-info Waiting for more information before the bug can be investigated labels Feb 28, 2024
@rolfbjarne
Copy link
Member

  • Looking at multiple instances, at around ~20min it starts to hang logs wise

I think I expressed myself badly: sometimes it can look like a hang, but it's just timing out too early. For example: if the build typically takes 58-59 minutes, and the task times out after 1 hour, then it would seem the build hung if it occasionally hit the 1 hour mark, even though it would have passed if given a few more minutes.

So my question is: how long is the task timeout for the build?

@rolfbjarne rolfbjarne added need-info Waiting for more information before the bug can be investigated and removed need-attention An issue requires our attention/response labels Feb 28, 2024
@takla21
Copy link
Author

takla21 commented Feb 28, 2024

@rolfbjarne

Have you ever seen it during local builds?

So I attempted to build it locally, but it seemed quite fast, so I couldn't reproduce the same behavior.

I think I expressed myself badly: sometimes it can look like a hang, but it's just timing out too early. For example: if the build typically takes 58-59 minutes, and the task times out after 1 hour, then it would seem the build hung if it occasionally hit the 1 hour mark, even though it would have passed if given a few more minutes.

So my question is: how long is the task timeout for the build?

I've never tried without the 1-hour timeout limit. I'll check if I can find a way to remove temporarily the timeout limit to check if it could be a timeout issue as you mentioned.

  • Looking at multiple instances, at around ~20min it starts to hang logs wise

If it can help, what I meant here, is that I can see it hang/timeout at around 20minutes with the log provided above. Which would mean that it waits for like 40 minutes until the timeout threshold is triggered.

@microsoft-github-policy-service microsoft-github-policy-service bot added need-attention An issue requires our attention/response and removed need-info Waiting for more information before the bug can be investigated labels Feb 28, 2024
@rolfbjarne rolfbjarne added need-info Waiting for more information before the bug can be investigated no-auto-reply For internal use and removed need-attention An issue requires our attention/response labels Feb 29, 2024
@microsoft-github-policy-service microsoft-github-policy-service bot removed the no-auto-reply For internal use label Feb 29, 2024
@takla21
Copy link
Author

takla21 commented Feb 29, 2024

@rolfbjarne so I removed the 1-hour timeout limit and you are right it's not hanging indefinitely as I thought earlier. Funny enough, it does seem that at times it can complete itself in less than an 1 hour which wasn't happening at the time I entered that issue.
image

Looking at the binlog, it seems that it does waste most of its time in the AOTCompile task.
image
timeline

I've enabled systems diagnostics on one of the runs and here are the logs near the end where it timeouts

2024-02-29T14:01:59.5174530Z ILLINK : warning MT0079: The recommended Xcode version for Microsoft.iOS 17.2.8022 is Xcode 15.1 or later. The current Xcode version (found in /Applications/Xcode_14.2.app/Contents/Developer) is 14.2. [/Users/runner/work/1/s/src/app/ProjectName.Mobile/ProjectName.Mobile.csproj::TargetFramework=net8.0-ios]
2024-02-29T14:01:59.5175420Z   		
2024-02-29T14:02:03.1769850Z ##[debug]Agent environment resources - Disk: / Available 52110.00 MB out of 306871.00 MB, Memory: Used 8805.00 MB out of 14333.00 MB, CPU: Usage 5.74%
2024-02-29T14:02:08.2330610Z ##[debug]Agent environment resources - Disk: / Available 52110.00 MB out of 306871.00 MB, Memory: Used 8771.00 MB out of 14330.00 MB, CPU: Usage 5.70%
2024-02-29T14:02:13.2593160Z ##[debug]Agent environment resources - Disk: / Available 52109.00 MB out of 306871.00 MB, Memory: Used 8768.00 MB out of 14330.00 MB, CPU: Usage 5.67%
2024-02-29T14:02:18.3439550Z ##[debug]Agent environment resources - Disk: / Available 52109.00 MB out of 306871.00 MB, Memory: Used 8768.00 MB out of 14330.00 MB, CPU: Usage 5.63%
2024-02-29T14:02:23.4766740Z ##[debug]Agent environment resources - Disk: / Available 52105.00 MB out of 306871.00 MB, Memory: Used 8767.00 MB out of 14334.00 MB, CPU: Usage 5.60%
2024-02-29T14:02:24.5027270Z ./iOS/LinkerExclusions.xml(9,3): warning IL2007: Could not resolve assembly 'ProjectName.DataAccess'. [/Users/runner/work/1/s/src/app/ProjectName.Mobile/ProjectName.Mobile.csproj::TargetFramework=net8.0-ios]
2024-02-29T14:02:24.5028660Z iOS/LinkerExclusions.xml(9,3): warning IL2007: Could not resolve assembly 'ProjectName.DataAccess'. [/Users/runner/work/1/s/src/app/ProjectName.Mobile/ProjectName.Mobile.csproj::TargetFramework=net8.0-ios]
2024-02-29T14:02:28.5963960Z ##[debug]Agent environment resources - Disk: / Available 52105.00 MB out of 306871.00 MB, Memory: Used 8337.00 MB out of 14334.00 MB, CPU: Usage 5.56%
2024-02-29T14:02:32.7245240Z /Users/runner/.nuget/packages/xamarin.firebase.ios.core/8.10.0.3/lib/net6.0-ios15.4/Firebase.Core.resources/GoogleUtilitiesComponents.xcframework/ios-arm64/GoogleUtilitiesComponents.framework/GoogleUtilitiesComponents : warning MT7091: The framework /Users/runner/.nuget/packages/xamarin.firebase.ios.core/8.10.0.3/lib/net6.0-ios15.4/Firebase.Core.resources/GoogleUtilitiesComponents.xcframework/ios-arm64/GoogleUtilitiesComponents.framework is a framework of static libraries, and will not be copied to the app. [/Users/runner/work/1/s/src/app/ProjectName.Mobile/ProjectName.Mobile.csproj::TargetFramework=net8.0-ios]
2024-02-29T14:02:32.7273230Z /Users/runner/Library/Caches/XamarinBuildDownload/GMps-6.0.1/Base/Frameworks/GoogleMapsBase.framework/GoogleMapsBase : warning MT7091: The framework /Users/runner/Library/Caches/XamarinBuildDownload/GMps-6.0.1/Base/Frameworks/GoogleMapsBase.framework is a framework of static libraries, and will not be copied to the app. [/Users/runner/work/1/s/src/app/ProjectName.Mobile/ProjectName.Mobile.csproj::TargetFramework=net8.0-ios]
2024-02-29T14:02:32.7284390Z /Users/runner/Library/Caches/XamarinBuildDownload/GMps-6.0.1/Maps/Frameworks/GoogleMapsCore.framework/GoogleMapsCore : warning MT7091: The framework /Users/runner/Library/Caches/XamarinBuildDownload/GMps-6.0.1/Maps/Frameworks/GoogleMapsCore.framework is a framework of static libraries, and will not be copied to the app. [/Users/runner/work/1/s/src/app/ProjectName.Mobile/ProjectName.Mobile.csproj::TargetFramework=net8.0-ios]
2024-02-29T14:02:32.7297060Z /Users/runner/Library/Caches/XamarinBuildDownload/GMps-6.0.1/Maps/Frameworks/GoogleMaps.framework/GoogleMaps : warning MT7091: The framework /Users/runner/Library/Caches/XamarinBuildDownload/GMps-6.0.1/Maps/Frameworks/GoogleMaps.framework is a framework of static libraries, and will not be copied to the app. [/Users/runner/work/1/s/src/app/ProjectName.Mobile/ProjectName.Mobile.csproj::TargetFramework=net8.0-ios]
2024-02-29T14:02:32.7379090Z /Users/runner/Library/Caches/XamarinBuildDownload/FAnlytcs-8.9.1/FirebaseAnalytics-8.9.1/Frameworks/FirebaseAnalytics.xcframework/ios-arm64_armv7/FirebaseAnalytics.framework/FirebaseAnalytics : warning MT7091: The framework /Users/runner/Library/Caches/XamarinBuildDownload/FAnlytcs-8.9.1/FirebaseAnalytics-8.9.1/Frameworks/FirebaseAnalytics.xcframework/ios-arm64_armv7/FirebaseAnalytics.framework is a framework of static libraries, and will not be copied to the app. [/Users/runner/work/1/s/src/app/ProjectName.Mobile/ProjectName.Mobile.csproj::TargetFramework=net8.0-ios]
2024-02-29T14:02:32.8517460Z /Users/runner/Library/Caches/XamarinBuildDownload/GAppM-8.9.1/GoogleAppMeasurement-8.9.1/Frameworks/GoogleAppMeasurement.xcframework/ios-arm64_armv7/GoogleAppMeasurement.framework/GoogleAppMeasurement : warning MT7091: The framework /Users/runner/Library/Caches/XamarinBuildDownload/GAppM-8.9.1/GoogleAppMeasurement-8.9.1/Frameworks/GoogleAppMeasurement.xcframework/ios-arm64_armv7/GoogleAppMeasurement.framework is a framework of static libraries, and will not be copied to the app. [/Users/runner/work/1/s/src/app/ProjectName.Mobile/ProjectName.Mobile.csproj::TargetFramework=net8.0-ios]
2024-02-29T14:02:32.8519500Z /Users/runner/Library/Caches/XamarinBuildDownload/GMps-6.0.1/Base/Frameworks/GoogleMapsBase.framework/GoogleMapsBase : warning MT7091: The framework /Users/runner/Library/Caches/XamarinBuildDownload/GMps-6.0.1/Base/Frameworks/GoogleMapsBase.framework is a framework of static libraries, and will not be copied to the app. [/Users/runner/work/1/s/src/app/ProjectName.Mobile/ProjectName.Mobile.csproj::TargetFramework=net8.0-ios]
2024-02-29T14:02:32.8520970Z /Users/runner/Library/Caches/XamarinBuildDownload/GMps-6.0.1/Maps/Frameworks/GoogleMapsCore.framework/GoogleMapsCore : warning MT7091: The framework /Users/runner/Library/Caches/XamarinBuildDownload/GMps-6.0.1/Maps/Frameworks/GoogleMapsCore.framework is a framework of static libraries, and will not be copied to the app. [/Users/runner/work/1/s/src/app/ProjectName.Mobile/ProjectName.Mobile.csproj::TargetFramework=net8.0-ios]
2024-02-29T14:02:32.8522920Z /Users/runner/Library/Caches/XamarinBuildDownload/GMps-6.0.1/Maps/Frameworks/GoogleMaps.framework/GoogleMaps : warning MT7091: The framework /Users/runner/Library/Caches/XamarinBuildDownload/GMps-6.0.1/Maps/Frameworks/GoogleMaps.framework is a framework of static libraries, and will not be copied to the app. [/Users/runner/work/1/s/src/app/ProjectName.Mobile/ProjectName.Mobile.csproj::TargetFramework=net8.0-ios]
2024-02-29T14:02:33.6766720Z ##[debug]Agent environment resources - Disk: / Available 52069.00 MB out of 306871.00 MB, Memory: Used 6406.00 MB out of 14331.00 MB, CPU: Usage 5.53%
2024-02-29T14:02:38.7082980Z ##[debug]Agent environment resources - Disk: / Available 52051.00 MB out of 306871.00 MB, Memory: Used 6617.00 MB out of 14331.00 MB, CPU: Usage 5.50%
2024-02-29T14:02:43.8329640Z ##[debug]Agent environment resources - Disk: / Available 52041.00 MB out of 306871.00 MB, Memory: Used 6671.00 MB out of 14329.00 MB, CPU: Usage 5.47%
2024-02-29T14:02:49.0449430Z ##[debug]Agent environment resources - Disk: / Available 52026.00 MB out of 306871.00 MB, Memory: Used 6929.00 MB out of 14329.00 MB, CPU: Usage 5.43%
2024-02-29T14:02:54.2567010Z ##[debug]Agent environment resources - Disk: / Available 51994.00 MB out of 306871.00 MB, Memory: Used 7755.00 MB out of 14333.00 MB, CPU: Usage 5.39%
2024-02-29T14:02:59.3676830Z ##[debug]Agent environment resources - Disk: / Available 51973.00 MB out of 306871.00 MB, Memory: Used 8167.00 MB out of 14333.00 MB, CPU: Usage 5.36%
2024-02-29T14:03:04.4896270Z ##[debug]Agent environment resources - Disk: / Available 51952.00 MB out of 306871.00 MB, Memory: Used 8101.00 MB out of 14332.00 MB, CPU: Usage 5.32%
2024-02-29T14:03:09.6247250Z ##[debug]Agent environment resources - Disk: / Available 51930.00 MB out of 306871.00 MB, Memory: Used 8059.00 MB out of 14331.00 MB, CPU: Usage 5.29%
2024-02-29T14:03:14.6554020Z ##[debug]Agent environment resources - Disk: / Available 51910.00 MB out of 306871.00 MB, Memory: Used 8035.00 MB out of 14331.00 MB, CPU: Usage 5.26%
2024-02-29T14:03:19.8330240Z ##[debug]Agent environment resources - Disk: / Available 51878.00 MB out of 306871.00 MB, Memory: Used 8050.00 MB out of 14330.00 MB, CPU: Usage 5.22%
2024-02-29T14:03:25.1612250Z ##[debug]Agent environment resources - Disk: / Available 51859.00 MB out of 306871.00 MB, Memory: Used 8066.00 MB out of 14331.00 MB, CPU: Usage 5.19%
2024-02-29T14:03:30.5536560Z ##[debug]Agent environment resources - Disk: / Available 51808.00 MB out of 306871.00 MB, Memory: Used 8089.00 MB out of 14333.00 MB, CPU: Usage 5.15%
2024-02-29T14:03:36.1234320Z ##[debug]Agent environment resources - Disk: / Available 51764.00 MB out of 306871.00 MB, Memory: Used 8093.00 MB out of 14330.00 MB, CPU: Usage 5.12%
2024-02-29T14:03:41.1524430Z ##[debug]Agent environment resources - Disk: / Available 51715.00 MB out of 306871.00 MB, Memory: Used 8087.00 MB out of 14332.00 MB, CPU: Usage 5.09%
2024-02-29T14:03:46.3242170Z ##[debug]Agent environment resources - Disk: / Available 51684.00 MB out of 306871.00 MB, Memory: Used 8077.00 MB out of 14331.00 MB, CPU: Usage 5.06%
2024-02-29T14:03:51.5251140Z ##[debug]Agent environment resources - Disk: / Available 51653.00 MB out of 306871.00 MB, Memory: Used 8118.00 MB out of 14331.00 MB, CPU: Usage 5.02%
2024-02-29T14:03:57.0447150Z ##[debug]Agent environment resources - Disk: / Available 51613.00 MB out of 306871.00 MB, Memory: Used 8217.00 MB out of 14331.00 MB, CPU: Usage 4.99%
2024-02-29T14:04:02.1241070Z ##[debug]Agent environment resources - Disk: / Available 51588.00 MB out of 306871.00 MB, Memory: Used 8316.00 MB out of 14332.00 MB, CPU: Usage 4.96%
2024-02-29T14:04:07.2938890Z ##[debug]Agent environment resources - Disk: / Available 50547.00 MB out of 306871.00 MB, Memory: Used 8272.00 MB out of 14330.00 MB, CPU: Usage 4.93%
2024-02-29T14:04:12.3791260Z ##[debug]Agent environment resources - Disk: / Available 50509.00 MB out of 306871.00 MB, Memory: Used 8410.00 MB out of 14333.00 MB, CPU: Usage 4.90%
2024-02-29T14:04:17.5502100Z ##[debug]Agent environment resources - Disk: / Available 50487.00 MB out of 306871.00 MB, Memory: Used 8312.00 MB out of 14331.00 MB, CPU: Usage 4.87%
2024-02-29T14:04:22.7333730Z ##[debug]Agent environment resources - Disk: / Available 50458.00 MB out of 306871.00 MB, Memory: Used 8421.00 MB out of 14331.00 MB, CPU: Usage 4.85%
2024-02-29T14:04:27.8984130Z ##[debug]Agent environment resources - Disk: / Available 50422.00 MB out of 306871.00 MB, Memory: Used 8608.00 MB out of 14332.00 MB, CPU: Usage 4.82%
2024-02-29T14:04:33.0730320Z ##[debug]Agent environment resources - Disk: / Available 50406.00 MB out of 306871.00 MB, Memory: Used 8635.00 MB out of 14330.00 MB, CPU: Usage 4.79%
2024-02-29T14:04:38.0978320Z ##[debug]Agent environment resources - Disk: / Available 50386.00 MB out of 306871.00 MB, Memory: Used 8586.00 MB out of 14333.00 MB, CPU: Usage 4.76%
2024-02-29T14:04:43.2901640Z ##[debug]Agent environment resources - Disk: / Available 50361.00 MB out of 306871.00 MB, Memory: Used 8621.00 MB out of 14327.00 MB, CPU: Usage 4.73%
2024-02-29T14:04:48.4987180Z ##[debug]Agent environment resources - Disk: / Available 50341.00 MB out of 306871.00 MB, Memory: Used 8658.00 MB out of 14329.00 MB, CPU: Usage 4.71%
2024-02-29T14:04:53.6112480Z ##[debug]Agent environment resources - Disk: / Available 50313.00 MB out of 306871.00 MB, Memory: Used 8841.00 MB out of 14329.00 MB, CPU: Usage 4.68%
2024-02-29T14:04:58.7461360Z ##[debug]Agent environment resources - Disk: / Available 50269.00 MB out of 306871.00 MB, Memory: Used 8835.00 MB out of 14332.00 MB, CPU: Usage 4.65%
2024-02-29T14:05:03.8335970Z ##[debug]Agent environment resources - Disk: / Available 49231.00 MB out of 306871.00 MB, Memory: Used 8624.00 MB out of 14333.00 MB, CPU: Usage 4.63%
2024-02-29T14:05:09.0063110Z ##[debug]Agent environment resources - Disk: / Available 49193.00 MB out of 306871.00 MB, Memory: Used 8549.00 MB out of 14332.00 MB, CPU: Usage 4.60%
2024-02-29T14:05:14.2396370Z ##[debug]Agent environment resources - Disk: / Available 49144.00 MB out of 306871.00 MB, Memory: Used 8676.00 MB out of 14329.00 MB, CPU: Usage 4.58%
2024-02-29T14:05:19.2821530Z ##[debug]Agent environment resources - Disk: / Available 49094.00 MB out of 306871.00 MB, Memory: Used 8594.00 MB out of 14332.00 MB, CPU: Usage 4.56%
2024-02-29T14:05:24.3957100Z ##[debug]Agent environment resources - Disk: / Available 49053.00 MB out of 306871.00 MB, Memory: Used 8649.00 MB out of 14330.00 MB, CPU: Usage 4.53%
2024-02-29T14:05:29.5884740Z ##[debug]Agent environment resources - Disk: / Available 49033.00 MB out of 306871.00 MB, Memory: Used 8608.00 MB out of 14331.00 MB, CPU: Usage 4.51%
2024-02-29T14:05:34.6542130Z ##[debug]Agent environment resources - Disk: / Available 48989.00 MB out of 306871.00 MB, Memory: Used 8608.00 MB out of 14333.00 MB, CPU: Usage 4.49%
2024-02-29T14:05:41.2044290Z ##[debug]Agent environment resources - Disk: / Available 47938.00 MB out of 306871.00 MB, Memory: Used 8522.00 MB out of 14329.00 MB, CPU: Usage 4.46%
2024-02-29T14:05:46.2675920Z ##[debug]Agent environment resources - Disk: / Available 47932.00 MB out of 306871.00 MB, Memory: Used 8738.00 MB out of 14332.00 MB, CPU: Usage 4.44%
2024-02-29T14:05:51.4535010Z ##[debug]Agent environment resources - Disk: / Available 47880.00 MB out of 306871.00 MB, Memory: Used 8854.00 MB out of 14333.00 MB, CPU: Usage 4.41%
2024-02-29T14:05:56.5634490Z ##[debug]Agent environment resources - Disk: / Available 47797.00 MB out of 306871.00 MB, Memory: Used 8832.00 MB out of 14330.00 MB, CPU: Usage 4.39%
2024-02-29T14:06:01.7704030Z ##[debug]Agent environment resources - Disk: / Available 47792.00 MB out of 306871.00 MB, Memory: Used 8802.00 MB out of 14329.00 MB, CPU: Usage 4.37%
2024-02-29T14:06:06.9189570Z ##[debug]Agent environment resources - Disk: / Available 47787.00 MB out of 306871.00 MB, Memory: Used 8835.00 MB out of 14329.00 MB, CPU: Usage 4.35%
2024-02-29T14:06:12.0057480Z ##[debug]Agent environment resources - Disk: / Available 47779.00 MB out of 306871.00 MB, Memory: Used 9085.00 MB out of 14333.00 MB, CPU: Usage 4.33%
2024-02-29T14:06:17.2105830Z ##[debug]Agent environment resources - Disk: / Available 47776.00 MB out of 306871.00 MB, Memory: Used 8960.00 MB out of 14333.00 MB, CPU: Usage 4.31%
2024-02-29T14:06:22.3648050Z ##[debug]Agent environment resources - Disk: / Available 47776.00 MB out of 306871.00 MB, Memory: Used 8992.00 MB out of 14331.00 MB, CPU: Usage 4.29%
2024-02-29T14:06:27.5323260Z ##[debug]Agent environment resources - Disk: / Available 47771.00 MB out of 306871.00 MB, Memory: Used 8893.00 MB out of 14332.00 MB, CPU: Usage 4.27%
2024-02-29T14:06:32.5995100Z ##[debug]Agent environment resources - Disk: / Available 47771.00 MB out of 306871.00 MB, Memory: Used 8748.00 MB out of 14331.00 MB, CPU: Usage 4.25%
2024-02-29T14:06:37.7748910Z ##[debug]Agent environment resources - Disk: / Available 47751.00 MB out of 306871.00 MB, Memory: Used 8919.00 MB out of 14329.00 MB, CPU: Usage 4.23%
2024-02-29T14:06:42.9246280Z ##[debug]Agent environment resources - Disk: / Available 47673.00 MB out of 306871.00 MB, Memory: Used 8968.00 MB out of 14332.00 MB, CPU: Usage 4.21%
2024-02-29T14:06:48.0430270Z ##[debug]Agent environment resources - Disk: / Available 47673.00 MB out of 306871.00 MB, Memory: Used 9089.00 MB out of 14332.00 MB, CPU: Usage 4.19%
2024-02-29T14:06:53.1220610Z ##[debug]Agent environment resources - Disk: / Available 47673.00 MB out of 306871.00 MB, Memory: Used 9137.00 MB out of 14333.00 MB, CPU: Usage 4.18%
2024-02-29T14:06:58.1609960Z ##[debug]Agent environment resources - Disk: / Available 47669.00 MB out of 306871.00 MB, Memory: Used 9129.00 MB out of 14330.00 MB, CPU: Usage 4.16%
2024-02-29T14:07:03.2830080Z ##[debug]Agent environment resources - Disk: / Available 47668.00 MB out of 306871.00 MB, Memory: Used 9231.00 MB out of 14330.00 MB, CPU: Usage 4.14%
2024-02-29T14:07:08.4608880Z ##[debug]Agent environment resources - Disk: / Available 47668.00 MB out of 306871.00 MB, Memory: Used 9109.00 MB out of 14333.00 MB, CPU: Usage 4.13%
2024-02-29T14:07:13.5587650Z ##[debug]Agent environment resources - Disk: / Available 47664.00 MB out of 306871.00 MB, Memory: Used 9119.00 MB out of 14333.00 MB, CPU: Usage 4.11%
2024-02-29T14:07:18.7172470Z ##[debug]Agent environment resources - Disk: / Available 47664.00 MB out of 306871.00 MB, Memory: Used 9238.00 MB out of 14329.00 MB, CPU: Usage 4.14%
2024-02-29T14:07:23.8153120Z ##[debug]Agent environment resources - Disk: / Available 47656.00 MB out of 306871.00 MB, Memory: Used 9248.00 MB out of 14333.00 MB, CPU: Usage 4.13%
2024-02-29T14:07:28.9275980Z ##[debug]Agent environment resources - Disk: / Available 47636.00 MB out of 306871.00 MB, Memory: Used 9223.00 MB out of 14332.00 MB, CPU: Usage 4.11%
2024-02-29T14:07:33.9624990Z ##[debug]Agent environment resources - Disk: / Available 47616.00 MB out of 306871.00 MB, Memory: Used 9211.00 MB out of 14330.00 MB, CPU: Usage 4.09%
2024-02-29T14:07:39.1645930Z ##[debug]Agent environment resources - Disk: / Available 47615.00 MB out of 306871.00 MB, Memory: Used 9288.00 MB out of 14333.00 MB, CPU: Usage 4.07%
2024-02-29T14:07:44.4194750Z ##[debug]Agent environment resources - Disk: / Available 47597.00 MB out of 306871.00 MB, Memory: Used 9338.00 MB out of 14329.00 MB, CPU: Usage 4.06%
2024-02-29T14:07:49.5321170Z ##[debug]Agent environment resources - Disk: / Available 47589.00 MB out of 306871.00 MB, Memory: Used 9179.00 MB out of 14331.00 MB, CPU: Usage 4.04%
2024-02-29T14:07:54.6948430Z ##[debug]Agent environment resources - Disk: / Available 47586.00 MB out of 306871.00 MB, Memory: Used 9348.00 MB out of 14331.00 MB, CPU: Usage 4.03%
2024-02-29T14:07:59.7939990Z ##[debug]Agent environment resources - Disk: / Available 47586.00 MB out of 306871.00 MB, Memory: Used 9313.00 MB out of 14331.00 MB, CPU: Usage 4.01%
2024-02-29T14:08:04.9017440Z ##[debug]Agent environment resources - Disk: / Available 47585.00 MB out of 306871.00 MB, Memory: Used 9344.00 MB out of 14327.00 MB, CPU: Usage 4.00%
2024-02-29T14:08:10.0816620Z ##[debug]Agent environment resources - Disk: / Available 47585.00 MB out of 306871.00 MB, Memory: Used 9293.00 MB out of 14330.00 MB, CPU: Usage 4.00%
2024-02-29T14:08:15.2221080Z ##[debug]Agent environment resources - Disk: / Available 47585.00 MB out of 306871.00 MB, Memory: Used 9206.00 MB out of 14330.00 MB, CPU: Usage 3.98%
2024-02-29T14:08:20.4188420Z ##[debug]Agent environment resources - Disk: / Available 47578.00 MB out of 306871.00 MB, Memory: Used 9263.00 MB out of 14331.00 MB, CPU: Usage 3.97%
2024-02-29T14:08:25.7186060Z ##[debug]Agent environment resources - Disk: / Available 47560.00 MB out of 306871.00 MB, Memory: Used 9232.00 MB out of 14331.00 MB, CPU: Usage 3.95%
2024-02-29T14:08:30.8745420Z ##[debug]Agent environment resources - Disk: / Available 47483.00 MB out of 306871.00 MB, Memory: Used 9377.00 MB out of 14333.00 MB, CPU: Usage 3.94%
2024-02-29T14:08:36.0666750Z ##[debug]Agent environment resources - Disk: / Available 47483.00 MB out of 306871.00 MB, Memory: Used 9258.00 MB out of 14332.00 MB, CPU: Usage 3.92%
2024-02-29T14:08:41.1235840Z ##[debug]Agent environment resources - Disk: / Available 47459.00 MB out of 306871.00 MB, Memory: Used 9235.00 MB out of 14330.00 MB, CPU: Usage 3.91%
2024-02-29T14:08:46.2342590Z ##[debug]Agent environment resources - Disk: / Available 47454.00 MB out of 306871.00 MB, Memory: Used 9088.00 MB out of 14329.00 MB, CPU: Usage 3.89%
2024-02-29T14:08:51.3131740Z ##[debug]Agent environment resources - Disk: / Available 47440.00 MB out of 306871.00 MB, Memory: Used 9402.00 MB out of 14328.00 MB, CPU: Usage 3.88%
2024-02-29T14:08:56.6511150Z ##[debug]Agent environment resources - Disk: / Available 47433.00 MB out of 306871.00 MB, Memory: Used 9238.00 MB out of 14332.00 MB, CPU: Usage 3.87%
2024-02-29T14:09:01.8027330Z ##[debug]Agent environment resources - Disk: / Available 47433.00 MB out of 306871.00 MB, Memory: Used 9248.00 MB out of 14332.00 MB, CPU: Usage 3.86%
2024-02-29T14:09:07.4011990Z ##[debug]Agent environment resources - Disk: / Available 47433.00 MB out of 306871.00 MB, Memory: Used 9323.00 MB out of 14331.00 MB, CPU: Usage 3.85%
2024-02-29T14:09:13.8822470Z ##[debug]Agent environment resources - Disk: / Available 47439.00 MB out of 306871.00 MB, Memory: Used 9373.00 MB out of 14331.00 MB, CPU: Usage 3.86%
2024-02-29T14:09:18.9490800Z ##[debug]Agent environment resources - Disk: / Available 47336.00 MB out of 306871.00 MB, Memory: Used 9394.00 MB out of 14331.00 MB, CPU: Usage 3.84%
2024-02-29T14:09:24.1307880Z ##[debug]Agent environment resources - Disk: / Available 47336.00 MB out of 306871.00 MB, Memory: Used 9405.00 MB out of 14331.00 MB, CPU: Usage 3.83%
2024-02-29T14:09:29.4390100Z ##[debug]Agent environment resources - Disk: / Available 47336.00 MB out of 306871.00 MB, Memory: Used 9440.00 MB out of 14327.00 MB, CPU: Usage 3.83%
2024-02-29T14:09:34.5502310Z ##[debug]Agent environment resources - Disk: / Available 47336.00 MB out of 306871.00 MB, Memory: Used 9555.00 MB out of 14333.00 MB, CPU: Usage 3.82%
2024-02-29T14:09:39.7270360Z ##[debug]Agent environment resources - Disk: / Available 47336.00 MB out of 306871.00 MB, Memory: Used 9724.00 MB out of 14332.00 MB, CPU: Usage 3.80%
2024-02-29T14:09:44.9013470Z ##[debug]Agent environment resources - Disk: / Available 47412.00 MB out of 306871.00 MB, Memory: Used 9684.00 MB out of 14331.00 MB, CPU: Usage 3.79%
2024-02-29T14:09:49.9262500Z ##[debug]Agent environment resources - Disk: / Available 47412.00 MB out of 306871.00 MB, Memory: Used 9722.00 MB out of 14331.00 MB, CPU: Usage 3.78%
2024-02-29T14:09:55.0846150Z ##[debug]Agent environment resources - Disk: / Available 47397.00 MB out of 306871.00 MB, Memory: Used 9697.00 MB out of 14331.00 MB, CPU: Usage 3.77%
2024-02-29T14:10:00.2373200Z ##[debug]Agent environment resources - Disk: / Available 47392.00 MB out of 306871.00 MB, Memory: Used 9683.00 MB out of 14330.00 MB, CPU: Usage 3.75%
2024-02-29T14:10:05.3153540Z ##[debug]Agent environment resources - Disk: / Available 47387.00 MB out of 306871.00 MB, Memory: Used 9703.00 MB out of 14330.00 MB, CPU: Usage 3.74%
2024-02-29T14:10:10.3583750Z ##[debug]Agent environment resources - Disk: / Available 47387.00 MB out of 306871.00 MB, Memory: Used 9691.00 MB out of 14332.00 MB, CPU: Usage 3.73%
2024-02-29T14:10:15.6063520Z ##[debug]Agent environment resources - Disk: / Available 47379.00 MB out of 306871.00 MB, Memory: Used 9691.00 MB out of 14332.00 MB, CPU: Usage 3.72%
2024-02-29T14:10:20.8543550Z ##[debug]Agent environment resources - Disk: / Available 47367.00 MB out of 306871.00 MB, Memory: Used 9601.00 MB out of 14330.00 MB, CPU: Usage 3.70%
2024-02-29T14:10:26.0270350Z ##[debug]Agent environment resources - Disk: / Available 47353.00 MB out of 306871.00 MB, Memory: Used 9520.00 MB out of 14333.00 MB, CPU: Usage 3.69%
2024-02-29T14:10:31.2454600Z ##[debug]Agent environment resources - Disk: / Available 47339.00 MB out of 306871.00 MB, Memory: Used 9573.00 MB out of 14329.00 MB, CPU: Usage 3.67%
2024-02-29T14:10:37.3412530Z ##[debug]Agent environment resources - Disk: / Available 47336.00 MB out of 306871.00 MB, Memory: Used 9443.00 MB out of 14332.00 MB, CPU: Usage 3.67%
2024-02-29T14:10:42.4458810Z ##[debug]Agent environment resources - Disk: / Available 46288.00 MB out of 306871.00 MB, Memory: Used 9183.00 MB out of 14331.00 MB, CPU: Usage 3.66%
2024-02-29T14:10:47.5678890Z ##[debug]Agent environment resources - Disk: / Available 46268.00 MB out of 306871.00 MB, Memory: Used 9568.00 MB out of 14332.00 MB, CPU: Usage 3.65%
2024-02-29T14:10:52.6770090Z ##[debug]Agent environment resources - Disk: / Available 46266.00 MB out of 306871.00 MB, Memory: Used 9296.00 MB out of 14331.00 MB, CPU: Usage 3.63%
2024-02-29T14:10:57.8222470Z ##[debug]Agent environment resources - Disk: / Available 46265.00 MB out of 306871.00 MB, Memory: Used 9408.00 MB out of 14332.00 MB, CPU: Usage 3.62%
2024-02-29T14:11:02.9666240Z ##[debug]Agent environment resources - Disk: / Available 46263.00 MB out of 306871.00 MB, Memory: Used 9253.00 MB out of 14332.00 MB, CPU: Usage 3.61%
2024-02-29T14:11:08.0978120Z ##[debug]Agent environment resources - Disk: / Available 46220.00 MB out of 306871.00 MB, Memory: Used 8925.00 MB out of 14330.00 MB, CPU: Usage 3.60%
2024-02-29T14:11:13.2172400Z ##[debug]Agent environment resources - Disk: / Available 46244.00 MB out of 306871.00 MB, Memory: Used 9221.00 MB out of 14331.00 MB, CPU: Usage 3.58%
2024-02-29T14:11:18.3597080Z ##[debug]Agent environment resources - Disk: / Available 47271.00 MB out of 306871.00 MB, Memory: Used 9197.00 MB out of 14332.00 MB, CPU: Usage 3.57%
2024-02-29T14:11:23.6292430Z ##[debug]Agent environment resources - Disk: / Available 47209.00 MB out of 306871.00 MB, Memory: Used 9343.00 MB out of 14332.00 MB, CPU: Usage 3.56%
2024-02-29T14:11:28.7400200Z ##[debug]Agent environment resources - Disk: / Available 47381.00 MB out of 306871.00 MB, Memory: Used 9510.00 MB out of 14333.00 MB, CPU: Usage 3.55%
2024-02-29T14:11:33.8932790Z ##[debug]Agent environment resources - Disk: / Available 47234.00 MB out of 306871.00 MB, Memory: Used 9583.00 MB out of 14330.00 MB, CPU: Usage 3.55%
2024-02-29T14:11:39.0023270Z ##[debug]Agent environment resources - Disk: / Available 47201.00 MB out of 306871.00 MB, Memory: Used 9196.00 MB out of 14332.00 MB, CPU: Usage 3.53%
2024-02-29T14:11:44.1966800Z ##[debug]Agent environment resources - Disk: / Available 47184.00 MB out of 306871.00 MB, Memory: Used 9337.00 MB out of 14331.00 MB, CPU: Usage 3.52%
2024-02-29T14:11:49.4132730Z ##[debug]Agent environment resources - Disk: / Available 47178.00 MB out of 306871.00 MB, Memory: Used 9153.00 MB out of 14332.00 MB, CPU: Usage 3.51%
2024-02-29T14:11:54.4299760Z ##[debug]Agent environment resources - Disk: / Available 47167.00 MB out of 306871.00 MB, Memory: Used 8963.00 MB out of 14331.00 MB, CPU: Usage 3.49%
2024-02-29T14:11:59.5548670Z ##[debug]Agent environment resources - Disk: / Available 47164.00 MB out of 306871.00 MB, Memory: Used 9376.00 MB out of 14331.00 MB, CPU: Usage 3.48%
2024-02-29T14:12:04.6418770Z ##[debug]Agent environment resources - Disk: / Available 47164.00 MB out of 306871.00 MB, Memory: Used 9352.00 MB out of 14332.00 MB, CPU: Usage 3.47%
2024-02-29T14:12:09.8005500Z ##[debug]Agent environment resources - Disk: / Available 47162.00 MB out of 306871.00 MB, Memory: Used 9188.00 MB out of 14330.00 MB, CPU: Usage 3.46%
2024-02-29T14:12:14.9051470Z ##[debug]Agent environment resources - Disk: / Available 47131.00 MB out of 306871.00 MB, Memory: Used 8981.00 MB out of 14331.00 MB, CPU: Usage 3.45%
2024-02-29T14:12:20.0634960Z ##[debug]Agent environment resources - Disk: / Available 47338.00 MB out of 306871.00 MB, Memory: Used 9171.00 MB out of 14333.00 MB, CPU: Usage 3.44%
2024-02-29T14:12:25.0870230Z ##[debug]Agent environment resources - Disk: / Available 47334.00 MB out of 306871.00 MB, Memory: Used 9251.00 MB out of 14330.00 MB, CPU: Usage 3.42%
2024-02-29T14:12:30.1427370Z ##[debug]Agent environment resources - Disk: / Available 47334.00 MB out of 306871.00 MB, Memory: Used 9140.00 MB out of 14332.00 MB, CPU: Usage 3.41%
2024-02-29T14:12:35.2751660Z ##[debug]Agent environment resources - Disk: / Available 47334.00 MB out of 306871.00 MB, Memory: Used 9161.00 MB out of 14332.00 MB, CPU: Usage 3.40%
2024-02-29T14:12:40.4435640Z ##[debug]Agent environment resources - Disk: / Available 47326.00 MB out of 306871.00 MB, Memory: Used 8808.00 MB out of 14330.00 MB, CPU: Usage 3.39%
2024-02-29T14:12:45.5873250Z ##[debug]Agent environment resources - Disk: / Available 47292.00 MB out of 306871.00 MB, Memory: Used 8552.00 MB out of 14334.00 MB, CPU: Usage 3.38%
2024-02-29T14:12:50.6948960Z ##[debug]Agent environment resources - Disk: / Available 47292.00 MB out of 306871.00 MB, Memory: Used 8967.00 MB out of 14333.00 MB, CPU: Usage 3.37%
2024-02-29T14:12:55.8577190Z ##[debug]Agent environment resources - Disk: / Available 47224.00 MB out of 306871.00 MB, Memory: Used 9196.00 MB out of 14329.00 MB, CPU: Usage 3.36%
2024-02-29T14:13:00.8980390Z ##[debug]Agent environment resources - Disk: / Available 47156.00 MB out of 306871.00 MB, Memory: Used 9254.00 MB out of 14330.00 MB, CPU: Usage 3.35%
2024-02-29T14:13:05.9884560Z ##[debug]Agent environment resources - Disk: / Available 47156.00 MB out of 306871.00 MB, Memory: Used 9200.00 MB out of 14332.00 MB, CPU: Usage 3.33%
2024-02-29T14:13:11.1396290Z ##[debug]Agent environment resources - Disk: / Available 47156.00 MB out of 306871.00 MB, Memory: Used 9110.00 MB out of 14329.00 MB, CPU: Usage 3.32%
2024-02-29T14:13:16.1811640Z ##[debug]Agent environment resources - Disk: / Available 47117.00 MB out of 306871.00 MB, Memory: Used 9208.00 MB out of 14330.00 MB, CPU: Usage 3.31%
2024-02-29T14:13:21.2765580Z ##[debug]Agent environment resources - Disk: / Available 47117.00 MB out of 306871.00 MB, Memory: Used 9203.00 MB out of 14330.00 MB, CPU: Usage 3.30%
2024-02-29T14:13:26.3498610Z ##[debug]Agent environment resources - Disk: / Available 47117.00 MB out of 306871.00 MB, Memory: Used 9141.00 MB out of 14331.00 MB, CPU: Usage 3.29%
2024-02-29T14:13:31.4215350Z ##[debug]Agent environment resources - Disk: / Available 46093.00 MB out of 306871.00 MB, Memory: Used 9032.00 MB out of 14329.00 MB, CPU: Usage 3.28%
2024-02-29T14:13:36.6456410Z ##[debug]Agent environment resources - Disk: / Available 46081.00 MB out of 306871.00 MB, Memory: Used 8910.00 MB out of 14331.00 MB, CPU: Usage 3.27%
2024-02-29T14:13:41.8340600Z ##[debug]Agent environment resources - Disk: / Available 46079.00 MB out of 306871.00 MB, Memory: Used 9043.00 MB out of 14330.00 MB, CPU: Usage 3.26%
2024-02-29T14:13:47.0209030Z ##[debug]Agent environment resources - Disk: / Available 46065.00 MB out of 306871.00 MB, Memory: Used 9012.00 MB out of 14331.00 MB, CPU: Usage 3.25%
2024-02-29T14:13:52.0596150Z ##[debug]Agent environment resources - Disk: / Available 46051.00 MB out of 306871.00 MB, Memory: Used 8456.00 MB out of 14332.00 MB, CPU: Usage 3.24%
2024-02-29T14:13:57.1216370Z ##[debug]Agent environment resources - Disk: / Available 46048.00 MB out of 306871.00 MB, Memory: Used 9012.00 MB out of 14331.00 MB, CPU: Usage 3.23%
2024-02-29T14:14:02.2040050Z ##[debug]Agent environment resources - Disk: / Available 47072.00 MB out of 306871.00 MB, Memory: Used 8963.00 MB out of 14330.00 MB, CPU: Usage 3.22%
2024-02-29T14:14:07.3478780Z ##[debug]Agent environment resources - Disk: / Available 47019.00 MB out of 306871.00 MB, Memory: Used 8814.00 MB out of 14332.00 MB, CPU: Usage 3.21%
2024-02-29T14:14:12.4196720Z ##[debug]Agent environment resources - Disk: / Available 47019.00 MB out of 306871.00 MB, Memory: Used 9147.00 MB out of 14330.00 MB, CPU: Usage 3.20%
2024-02-29T14:14:17.5981030Z ##[debug]Agent environment resources - Disk: / Available 47019.00 MB out of 306871.00 MB, Memory: Used 9256.00 MB out of 14331.00 MB, CPU: Usage 3.19%
2024-02-29T14:14:22.7805460Z ##[debug]Agent environment resources - Disk: / Available 47019.00 MB out of 306871.00 MB, Memory: Used 9200.00 MB out of 14330.00 MB, CPU: Usage 3.18%
2024-02-29T14:14:27.8374380Z ##[debug]Agent environment resources - Disk: / Available 47019.00 MB out of 306871.00 MB, Memory: Used 9291.00 MB out of 14331.00 MB, CPU: Usage 3.17%
2024-02-29T14:14:32.8946120Z ##[debug]Agent environment resources - Disk: / Available 47019.00 MB out of 306871.00 MB, Memory: Used 9408.00 MB out of 14331.00 MB, CPU: Usage 3.16%
2024-02-29T14:14:37.9347240Z ##[debug]Agent environment resources - Disk: / Available 47019.00 MB out of 306871.00 MB, Memory: Used 9286.00 MB out of 14331.00 MB, CPU: Usage 3.15%
2024-02-29T14:14:42.9986410Z ##[debug]Agent environment resources - Disk: / Available 47019.00 MB out of 306871.00 MB, Memory: Used 8845.00 MB out of 14331.00 MB, CPU: Usage 3.15%
2024-02-29T14:14:48.1259220Z ##[debug]Agent environment resources - Disk: / Available 45995.00 MB out of 306871.00 MB, Memory: Used 8853.00 MB out of 14332.00 MB, CPU: Usage 3.14%
2024-02-29T14:14:53.1878230Z ##[debug]Agent environment resources - Disk: / Available 45975.00 MB out of 306871.00 MB, Memory: Used 8135.00 MB out of 14329.00 MB, CPU: Usage 3.13%
2024-02-29T14:14:58.2407220Z ##[debug]Agent environment resources - Disk: / Available 45975.00 MB out of 306871.00 MB, Memory: Used 8979.00 MB out of 14332.00 MB, CPU: Usage 3.12%
2024-02-29T14:15:03.3470150Z ##[debug]Agent environment resources - Disk: / Available 45975.00 MB out of 306871.00 MB, Memory: Used 8908.00 MB out of 14331.00 MB, CPU: Usage 3.11%
2024-02-29T14:15:08.4499430Z ##[debug]Agent environment resources - Disk: / Available 45975.00 MB out of 306871.00 MB, Memory: Used 9050.00 MB out of 14332.00 MB, CPU: Usage 3.10%
2024-02-29T14:15:13.6308640Z ##[debug]Agent environment resources - Disk: / Available 45975.00 MB out of 306871.00 MB, Memory: Used 9041.00 MB out of 14329.00 MB, CPU: Usage 3.09%
2024-02-29T14:15:18.6516330Z ##[debug]Agent environment resources - Disk: / Available 45975.00 MB out of 306871.00 MB, Memory: Used 9000.00 MB out of 14331.00 MB, CPU: Usage 3.08%
2024-02-29T14:15:23.6737690Z ##[debug]Agent environment resources - Disk: / Available 45975.00 MB out of 306871.00 MB, Memory: Used 9126.00 MB out of 14331.00 MB, CPU: Usage 3.08%
2024-02-29T14:15:28.7629780Z ##[debug]Agent environment resources - Disk: / Available 45975.00 MB out of 306871.00 MB, Memory: Used 8870.00 MB out of 14331.00 MB, CPU: Usage 3.07%
2024-02-29T14:15:33.7866850Z ##[debug]Agent environment resources - Disk: / Available 45957.00 MB out of 306871.00 MB, Memory: Used 8067.00 MB out of 14330.00 MB, CPU: Usage 3.07%
2024-02-29T14:15:38.8905710Z ##[debug]Agent environment resources - Disk: / Available 45950.00 MB out of 306871.00 MB, Memory: Used 9019.00 MB out of 14329.00 MB, CPU: Usage 3.06%
2024-02-29T14:15:43.9995120Z ##[debug]Agent environment resources - Disk: / Available 45892.00 MB out of 306871.00 MB, Memory: Used 8675.00 MB out of 14333.00 MB, CPU: Usage 3.05%
2024-02-29T14:15:49.0864920Z ##[debug]Agent environment resources - Disk: / Available 45891.00 MB out of 306871.00 MB, Memory: Used 8934.00 MB out of 14333.00 MB, CPU: Usage 3.04%
2024-02-29T14:15:54.1481660Z ##[debug]Agent environment resources - Disk: / Available 45890.00 MB out of 306871.00 MB, Memory: Used 9114.00 MB out of 14332.00 MB, CPU: Usage 3.04%
2024-02-29T14:15:59.1602830Z ##[debug]Agent environment resources - Disk: / Available 45890.00 MB out of 306871.00 MB, Memory: Used 9172.00 MB out of 14331.00 MB, CPU: Usage 3.03%
2024-02-29T14:16:04.1839400Z ##[debug]Agent environment resources - Disk: / Available 45890.00 MB out of 306871.00 MB, Memory: Used 9202.00 MB out of 14332.00 MB, CPU: Usage 3.02%
2024-02-29T14:16:09.2516380Z ##[debug]Agent environment resources - Disk: / Available 45890.00 MB out of 306871.00 MB, Memory: Used 9076.00 MB out of 14331.00 MB, CPU: Usage 3.01%
2024-02-29T14:16:14.2678460Z ##[debug]Agent environment resources - Disk: / Available 45863.00 MB out of 306871.00 MB, Memory: Used 8055.00 MB out of 14332.00 MB, CPU: Usage 3.01%
2024-02-29T14:16:19.3151060Z ##[debug]Agent environment resources - Disk: / Available 45863.00 MB out of 306871.00 MB, Memory: Used 8865.00 MB out of 14332.00 MB, CPU: Usage 3.00%
2024-02-29T14:16:24.3318160Z ##[debug]Agent environment resources - Disk: / Available 45862.00 MB out of 306871.00 MB, Memory: Used 8675.00 MB out of 14331.00 MB, CPU: Usage 2.99%
2024-02-29T14:16:29.3820990Z ##[debug]Agent environment resources - Disk: / Available 45865.00 MB out of 306871.00 MB, Memory: Used 9136.00 MB out of 14330.00 MB, CPU: Usage 2.98%
2024-02-29T14:16:34.4114700Z ##[debug]Agent environment resources - Disk: / Available 45864.00 MB out of 306871.00 MB, Memory: Used 9051.00 MB out of 14333.00 MB, CPU: Usage 2.97%
2024-02-29T14:16:39.4926400Z ##[debug]Agent environment resources - Disk: / Available 45864.00 MB out of 306871.00 MB, Memory: Used 9365.00 MB out of 14332.00 MB, CPU: Usage 2.97%
2024-02-29T14:16:44.6223240Z ##[debug]Agent environment resources - Disk: / Available 45864.00 MB out of 306871.00 MB, Memory: Used 9409.00 MB out of 14331.00 MB, CPU: Usage 2.97%
2024-02-29T14:16:49.7950030Z ##[debug]Agent environment resources - Disk: / Available 45877.00 MB out of 306871.00 MB, Memory: Used 9273.00 MB out of 14331.00 MB, CPU: Usage 2.96%
2024-02-29T14:16:54.9528800Z ##[debug]Agent environment resources - Disk: / Available 45876.00 MB out of 306871.00 MB, Memory: Used 9179.00 MB out of 14330.00 MB, CPU: Usage 2.96%
2024-02-29T14:17:00.0115840Z ##[debug]Agent environment resources - Disk: / Available 45876.00 MB out of 306871.00 MB, Memory: Used 9055.00 MB out of 14330.00 MB, CPU: Usage 2.96%
2024-02-29T14:17:05.0848990Z ##[debug]Agent environment resources - Disk: / Available 45747.00 MB out of 306871.00 MB, Memory: Used 8019.00 MB out of 14331.00 MB, CPU: Usage 2.96%
2024-02-29T14:17:10.1368650Z ##[debug]Agent environment resources - Disk: / Available 45746.00 MB out of 306871.00 MB, Memory: Used 8485.00 MB out of 14330.00 MB, CPU: Usage 2.96%
2024-02-29T14:17:15.1737470Z ##[debug]Agent environment resources - Disk: / Available 45745.00 MB out of 306871.00 MB, Memory: Used 8323.00 MB out of 14330.00 MB, CPU: Usage 2.95%
2024-02-29T14:17:20.2504720Z ##[debug]Agent environment resources - Disk: / Available 45738.00 MB out of 306871.00 MB, Memory: Used 9115.00 MB out of 14332.00 MB, CPU: Usage 2.95%
2024-02-29T14:17:25.3305980Z ##[debug]Agent environment resources - Disk: / Available 45731.00 MB out of 306871.00 MB, Memory: Used 9424.00 MB out of 14331.00 MB, CPU: Usage 2.94%
2024-02-29T14:17:30.4310150Z ##[debug]Agent environment resources - Disk: / Available 46755.00 MB out of 306871.00 MB, Memory: Used 9479.00 MB out of 14332.00 MB, CPU: Usage 2.94%
2024-02-29T14:17:35.5295630Z ##[debug]Agent environment resources - Disk: / Available 46749.00 MB out of 306871.00 MB, Memory: Used 9571.00 MB out of 14329.00 MB, CPU: Usage 2.94%
2024-02-29T14:17:40.5711820Z ##[debug]Agent environment resources - Disk: / Available 46749.00 MB out of 306871.00 MB, Memory: Used 9499.00 MB out of 14330.00 MB, CPU: Usage 2.93%
2024-02-29T14:17:45.6177920Z ##[debug]Agent environment resources - Disk: / Available 46749.00 MB out of 306871.00 MB, Memory: Used 9484.00 MB out of 14333.00 MB, CPU: Usage 2.93%
2024-02-29T14:17:50.6415390Z ##[debug]Agent environment resources - Disk: / Available 46744.00 MB out of 306871.00 MB, Memory: Used 9403.00 MB out of 14334.00 MB, CPU: Usage 2.92%
2024-02-29T14:17:55.7228110Z ##[debug]Agent environment resources - Disk: / Available 46744.00 MB out of 306871.00 MB, Memory: Used 9308.00 MB out of 14330.00 MB, CPU: Usage 2.92%
2024-02-29T14:18:00.7415730Z ##[debug]Agent environment resources - Disk: / Available 46744.00 MB out of 306871.00 MB, Memory: Used 9370.00 MB out of 14331.00 MB, CPU: Usage 2.92%
2024-02-29T14:18:05.8314510Z ##[debug]Agent environment resources - Disk: / Available 45720.00 MB out of 306871.00 MB, Memory: Used 9323.00 MB out of 14334.00 MB, CPU: Usage 2.92%
2024-02-29T14:18:10.8579820Z ##[debug]Agent environment resources - Disk: / Available 45720.00 MB out of 306871.00 MB, Memory: Used 9254.00 MB out of 14332.00 MB, CPU: Usage 2.92%
2024-02-29T14:18:15.9589280Z ##[debug]Agent environment resources - Disk: / Available 45720.00 MB out of 306871.00 MB, Memory: Used 9239.00 MB out of 14328.00 MB, CPU: Usage 2.92%
2024-02-29T14:18:21.0584880Z ##[debug]Agent environment resources - Disk: / Available 45720.00 MB out of 306871.00 MB, Memory: Used 9204.00 MB out of 14330.00 MB, CPU: Usage 2.92%
2024-02-29T14:18:26.1250610Z ##[debug]Agent environment resources - Disk: / Available 45720.00 MB out of 306871.00 MB, Memory: Used 9225.00 MB out of 14330.00 MB, CPU: Usage 2.92%
2024-02-29T14:18:31.1831410Z ##[debug]Agent environment resources - Disk: / Available 45720.00 MB out of 306871.00 MB, Memory: Used 9284.00 MB out of 14331.00 MB, CPU: Usage 2.91%
2024-02-29T14:18:36.2121080Z ##[debug]Agent environment resources - Disk: / Available 45720.00 MB out of 306871.00 MB, Memory: Used 9541.00 MB out of 14331.00 MB, CPU: Usage 2.91%
2024-02-29T14:18:41.3386710Z ##[debug]Agent environment resources - Disk: / Available 45720.00 MB out of 306871.00 MB, Memory: Used 9660.00 MB out of 14331.00 MB, CPU: Usage 2.91%
2024-02-29T14:18:46.4361190Z ##[debug]Agent environment resources - Disk: / Available 45720.00 MB out of 306871.00 MB, Memory: Used 9394.00 MB out of 14332.00 MB, CPU: Usage 2.91%
2024-02-29T14:18:51.4817740Z ##[debug]Agent environment resources - Disk: / Available 45720.00 MB out of 306871.00 MB, Memory: Used 9510.00 MB out of 14332.00 MB, CPU: Usage 2.90%
2024-02-29T14:18:56.5624070Z ##[debug]Agent environment resources - Disk: / Available 45720.00 MB out of 306871.00 MB, Memory: Used 9537.00 MB out of 14331.00 MB, CPU: Usage 2.90%
2024-02-29T14:19:01.5847850Z ##[debug]Agent environment resources - Disk: / Available 44696.00 MB out of 306871.00 MB, Memory: Used 9423.00 MB out of 14330.00 MB, CPU: Usage 2.90%
2024-02-29T14:19:06.6101160Z ##[debug]Agent environment resources - Disk: / Available 44696.00 MB out of 306871.00 MB, Memory: Used 9661.00 MB out of 14333.00 MB, CPU: Usage 2.89%
2024-02-29T14:19:11.6566520Z ##[debug]Agent environment resources - Disk: / Available 44696.00 MB out of 306871.00 MB, Memory: Used 9829.00 MB out of 14332.00 MB, CPU: Usage 2.89%
2024-02-29T14:19:16.7128410Z ##[debug]Agent environment resources - Disk: / Available 45720.00 MB out of 306871.00 MB, Memory: Used 10009.00 MB out of 14327.00 MB, CPU: Usage 2.89%
2024-02-29T14:19:21.7505550Z ##[debug]Agent environment resources - Disk: / Available 45720.00 MB out of 306871.00 MB, Memory: Used 10074.00 MB out of 14333.00 MB, CPU: Usage 2.89%
2024-02-29T14:19:26.7710700Z ##[debug]Agent environment resources - Disk: / Available 45720.00 MB out of 306871.00 MB, Memory: Used 9911.00 MB out of 14331.00 MB, CPU: Usage 2.89%
2024-02-29T14:19:31.7980470Z ##[debug]Agent environment resources - Disk: / Available 45720.00 MB out of 306871.00 MB, Memory: Used 10145.00 MB out of 14328.00 MB, CPU: Usage 2.89%
2024-02-29T14:19:36.9688730Z ##[debug]Agent environment resources - Disk: / Available 45720.00 MB out of 306871.00 MB, Memory: Used 9842.00 MB out of 14333.00 MB, CPU: Usage 2.89%
2024-02-29T14:19:42.0903070Z ##[debug]Agent environment resources - Disk: / Available 44696.00 MB out of 306871.00 MB, Memory: Used 9491.00 MB out of 14331.00 MB, CPU: Usage 2.89%
2024-02-29T14:19:47.1325280Z ##[debug]Agent environment resources - Disk: / Available 44696.00 MB out of 306871.00 MB, Memory: Used 9598.00 MB out of 14330.00 MB, CPU: Usage 2.89%
2024-02-29T14:19:52.1896530Z ##[debug]Agent environment resources - Disk: / Available 44696.00 MB out of 306871.00 MB, Memory: Used 9728.00 MB out of 14330.00 MB, CPU: Usage 2.89%
2024-02-29T14:19:57.3242630Z ##[debug]Agent environment resources - Disk: / Available 44696.00 MB out of 306871.00 MB, Memory: Used 9879.00 MB out of 14330.00 MB, CPU: Usage 2.89%
2024-02-29T14:20:02.3960330Z ##[debug]Agent environment resources - Disk: / Available 44696.00 MB out of 306871.00 MB, Memory: Used 9790.00 MB out of 14329.00 MB, CPU: Usage 2.88%
2024-02-29T14:20:07.5791830Z ##[debug]Agent environment resources - Disk: / Available 44696.00 MB out of 306871.00 MB, Memory: Used 10035.00 MB out of 14329.00 MB, CPU: Usage 2.88%
2024-02-29T14:20:12.6430000Z ##[debug]Agent environment resources - Disk: / Available 44696.00 MB out of 306871.00 MB, Memory: Used 9996.00 MB out of 14331.00 MB, CPU: Usage 2.88%
2024-02-29T14:20:17.7764640Z ##[debug]Agent environment resources - Disk: / Available 44696.00 MB out of 306871.00 MB, Memory: Used 10142.00 MB out of 14328.00 MB, CPU: Usage 2.88%
2024-02-29T14:20:23.0565940Z ##[debug]Agent environment resources - Disk: / Available 44696.00 MB out of 306871.00 MB, Memory: Used 10172.00 MB out of 14330.00 MB, CPU: Usage 2.88%
2024-02-29T14:20:28.3246950Z ##[debug]Agent environment resources - Disk: / Available 44696.00 MB out of 306871.00 MB, Memory: Used 10400.00 MB out of 14330.00 MB, CPU: Usage 2.88%
2024-02-29T14:20:33.3543180Z ##[debug]Agent environment resources - Disk: / Available 44696.00 MB out of 306871.00 MB, Memory: Used 10573.00 MB out of 14331.00 MB, CPU: Usage 2.87%
2024-02-29T14:20:38.4931940Z ##[debug]Agent environment resources - Disk: / Available 44696.00 MB out of 306871.00 MB, Memory: Used 10638.00 MB out of 14331.00 MB, CPU: Usage 2.88%
2024-02-29T14:20:43.6193240Z ##[debug]Agent environment resources - Disk: / Available 45720.00 MB out of 306871.00 MB, Memory: Used 10564.00 MB out of 14333.00 MB, CPU: Usage 2.87%
2024-02-29T14:20:48.6633990Z ##[debug]Agent environment resources - Disk: / Available 45720.00 MB out of 306871.00 MB, Memory: Used 10409.00 MB out of 14331.00 MB, CPU: Usage 2.87%
2024-02-29T14:20:53.7527390Z ##[debug]Agent environment resources - Disk: / Available 44696.00 MB out of 306871.00 MB, Memory: Used 10313.00 MB out of 14332.00 MB, CPU: Usage 2.87%
2024-02-29T14:20:58.8169980Z ##[debug]Agent environment resources - Disk: / Available 44653.00 MB out of 306871.00 MB, Memory: Used 9200.00 MB out of 14334.00 MB, CPU: Usage 2.87%
2024-02-29T14:21:03.8684350Z ##[debug]Agent environment resources - Disk: / Available 44653.00 MB out of 306871.00 MB, Memory: Used 9633.00 MB out of 14332.00 MB, CPU: Usage 2.87%
2024-02-29T14:21:08.9059420Z ##[debug]Agent environment resources - Disk: / Available 45677.00 MB out of 306871.00 MB, Memory: Used 10148.00 MB out of 14330.00 MB, CPU: Usage 2.87%
2024-02-29T14:21:14.0588070Z ##[debug]Agent environment resources - Disk: / Available 45677.00 MB out of 306871.00 MB, Memory: Used 9482.00 MB out of 14331.00 MB, CPU: Usage 2.87%
2024-02-29T14:21:19.1330790Z ##[debug]Agent environment resources - Disk: / Available 45677.00 MB out of 306871.00 MB, Memory: Used 9692.00 MB out of 14331.00 MB, CPU: Usage 2.88%
2024-02-29T14:21:24.2882700Z ##[debug]Agent environment resources - Disk: / Available 45677.00 MB out of 306871.00 MB, Memory: Used 9731.00 MB out of 14330.00 MB, CPU: Usage 2.88%
2024-02-29T14:21:29.4163520Z ##[debug]Agent environment resources - Disk: / Available 45677.00 MB out of 306871.00 MB, Memory: Used 9730.00 MB out of 14333.00 MB, CPU: Usage 2.88%
2024-02-29T14:21:34.4984140Z ##[debug]Agent environment resources - Disk: / Available 45677.00 MB out of 306871.00 MB, Memory: Used 9555.00 MB out of 14330.00 MB, CPU: Usage 2.88%
2024-02-29T14:21:39.5104230Z ##[debug]Agent environment resources - Disk: / Available 45677.00 MB out of 306871.00 MB, Memory: Used 9651.00 MB out of 14330.00 MB, CPU: Usage 2.88%
2024-02-29T14:21:44.5759080Z ##[debug]Agent environment resources - Disk: / Available 45677.00 MB out of 306871.00 MB, Memory: Used 9829.00 MB out of 14330.00 MB, CPU: Usage 2.88%
2024-02-29T14:21:49.6606380Z ##[debug]Agent environment resources - Disk: / Available 45677.00 MB out of 306871.00 MB, Memory: Used 9842.00 MB out of 14332.00 MB, CPU: Usage 2.87%
2024-02-29T14:21:54.7672400Z ##[debug]Agent environment resources - Disk: / Available 44653.00 MB out of 306871.00 MB, Memory: Used 9576.00 MB out of 14333.00 MB, CPU: Usage 2.87%
2024-02-29T14:21:59.8464130Z ##[debug]Agent environment resources - Disk: / Available 44653.00 MB out of 306871.00 MB, Memory: Used 9670.00 MB out of 14330.00 MB, CPU: Usage 2.87%
2024-02-29T14:22:05.0695200Z ##[debug]Agent environment resources - Disk: / Available 44653.00 MB out of 306871.00 MB, Memory: Used 9704.00 MB out of 14330.00 MB, CPU: Usage 2.87%
2024-02-29T14:22:10.1367360Z ##[debug]Agent environment resources - Disk: / Available 44653.00 MB out of 306871.00 MB, Memory: Used 9609.00 MB out of 14331.00 MB, CPU: Usage 2.87%
2024-02-29T14:22:15.1872000Z ##[debug]Agent environment resources - Disk: / Available 44653.00 MB out of 306871.00 MB, Memory: Used 9575.00 MB out of 14331.00 MB, CPU: Usage 2.87%
2024-02-29T14:22:20.2925270Z ##[debug]Agent environment resources - Disk: / Available 44653.00 MB out of 306871.00 MB, Memory: Used 9524.00 MB out of 14332.00 MB, CPU: Usage 2.87%
2024-02-29T14:22:25.3852270Z ##[debug]Agent environment resources - Disk: / Available 44652.00 MB out of 306871.00 MB, Memory: Used 9538.00 MB out of 14331.00 MB, CPU: Usage 2.87%
2024-02-29T14:22:30.4064090Z ##[debug]Agent environment resources - Disk: / Available 44652.00 MB out of 306871.00 MB, Memory: Used 9562.00 MB out of 14333.00 MB, CPU: Usage 2.86%
2024-02-29T14:22:35.4823020Z ##[debug]Agent environment resources - Disk: / Available 44652.00 MB out of 306871.00 MB, Memory: Used 9619.00 MB out of 14327.00 MB, CPU: Usage 2.86%
2024-02-29T14:22:40.6207500Z ##[debug]Agent environment resources - Disk: / Available 44652.00 MB out of 306871.00 MB, Memory: Used 9599.00 MB out of 14333.00 MB, CPU: Usage 2.86%
2024-02-29T14:22:45.7543070Z ##[debug]Agent environment resources - Disk: / Available 44652.00 MB out of 306871.00 MB, Memory: Used 9640.00 MB out of 14331.00 MB, CPU: Usage 2.86%
2024-02-29T14:22:50.8149460Z ##[debug]Agent environment resources - Disk: / Available 44652.00 MB out of 306871.00 MB, Memory: Used 9675.00 MB out of 14332.00 MB, CPU: Usage 2.86%
2024-02-29T14:22:56.2465190Z ##[debug]Agent environment resources - Disk: / Available 44652.00 MB out of 306871.00 MB, Memory: Used 9735.00 MB out of 14328.00 MB, CPU: Usage 2.86%
2024-02-29T14:23:01.3635010Z ##[debug]Agent environment resources - Disk: / Available 44652.00 MB out of 306871.00 MB, Memory: Used 9660.00 MB out of 14331.00 MB, CPU: Usage 2.86%
2024-02-29T14:23:06.5165150Z ##[debug]Agent environment resources - Disk: / Available 43628.00 MB out of 306871.00 MB, Memory: Used 9651.00 MB out of 14331.00 MB, CPU: Usage 2.86%
2024-02-29T14:23:11.6416020Z ##[debug]Agent environment resources - Disk: / Available 43627.00 MB out of 306871.00 MB, Memory: Used 9575.00 MB out of 14333.00 MB, CPU: Usage 2.86%
2024-02-29T14:23:16.6742200Z ##[debug]Agent environment resources - Disk: / Available 43627.00 MB out of 306871.00 MB, Memory: Used 9536.00 MB out of 14332.00 MB, CPU: Usage 2.86%
2024-02-29T14:23:21.7176910Z ##[debug]Agent environment resources - Disk: / Available 43627.00 MB out of 306871.00 MB, Memory: Used 9516.00 MB out of 14329.00 MB, CPU: Usage 2.85%
2024-02-29T14:23:26.8536740Z ##[debug]Agent environment resources - Disk: / Available 43627.00 MB out of 306871.00 MB, Memory: Used 9385.00 MB out of 14329.00 MB, CPU: Usage 2.85%
2024-02-29T14:23:31.8692230Z ##[debug]Agent environment resources - Disk: / Available 43570.00 MB out of 306871.00 MB, Memory: Used 7885.00 MB out of 14332.00 MB, CPU: Usage 2.85%
2024-02-29T14:23:36.9988700Z ##[debug]Agent environment resources - Disk: / Available 43569.00 MB out of 306871.00 MB, Memory: Used 8251.00 MB out of 14332.00 MB, CPU: Usage 2.85%
2024-02-29T14:23:42.0157300Z ##[debug]Agent environment resources - Disk: / Available 43569.00 MB out of 306871.00 MB, Memory: Used 8447.00 MB out of 14331.00 MB, CPU: Usage 2.85%
2024-02-29T14:23:47.1216450Z ##[debug]Agent environment resources - Disk: / Available 44354.00 MB out of 306871.00 MB, Memory: Used 9297.00 MB out of 14332.00 MB, CPU: Usage 2.85%
2024-02-29T14:23:52.1779710Z ##[debug]Agent environment resources - Disk: / Available 44464.00 MB out of 306871.00 MB, Memory: Used 8083.00 MB out of 14331.00 MB, CPU: Usage 2.84%
2024-02-29T14:23:57.2186340Z ##[debug]Agent environment resources - Disk: / Available 44407.00 MB out of 306871.00 MB, Memory: Used 7778.00 MB out of 14330.00 MB, CPU: Usage 2.85%
2024-02-29T14:24:02.2322370Z ##[debug]Agent environment resources - Disk: / Available 43327.00 MB out of 306871.00 MB, Memory: Used 7818.00 MB out of 14330.00 MB, CPU: Usage 2.85%
2024-02-29T14:24:07.2920600Z ##[debug]Agent environment resources - Disk: / Available 43327.00 MB out of 306871.00 MB, Memory: Used 8162.00 MB out of 14330.00 MB, CPU: Usage 2.84%
2024-02-29T14:24:12.4352440Z ##[debug]Agent environment resources - Disk: / Available 43327.00 MB out of 306871.00 MB, Memory: Used 8129.00 MB out of 14330.00 MB, CPU: Usage 2.84%
2024-02-29T14:24:17.4462070Z ##[debug]Agent environment resources - Disk: / Available 43327.00 MB out of 306871.00 MB, Memory: Used 7913.00 MB out of 14331.00 MB, CPU: Usage 2.84%
2024-02-29T14:24:22.4765930Z ##[debug]Agent environment resources - Disk: / Available 43317.00 MB out of 306871.00 MB, Memory: Used 8274.00 MB out of 14330.00 MB, CPU: Usage 2.83%
2024-02-29T14:24:27.5670870Z ##[debug]Agent environment resources - Disk: / Available 43317.00 MB out of 306871.00 MB, Memory: Used 8409.00 MB out of 14333.00 MB, CPU: Usage 2.83%
2024-02-29T14:24:32.5785720Z ##[debug]Agent environment resources - Disk: / Available 43317.00 MB out of 306871.00 MB, Memory: Used 8226.00 MB out of 14329.00 MB, CPU: Usage 2.83%
2024-02-29T14:24:37.6035640Z ##[debug]Agent environment resources - Disk: / Available 42906.00 MB out of 306871.00 MB, Memory: Used 8647.00 MB out of 14330.00 MB, CPU: Usage 2.82%
2024-02-29T14:24:42.7680390Z ##[debug]Agent environment resources - Disk: / Available 42906.00 MB out of 306871.00 MB, Memory: Used 8746.00 MB out of 14330.00 MB, CPU: Usage 2.82%
2024-02-29T14:24:47.8731290Z ##[debug]Agent environment resources - Disk: / Available 42906.00 MB out of 306871.00 MB, Memory: Used 8459.00 MB out of 14329.00 MB, CPU: Usage 2.82%
2024-02-29T14:24:52.9593990Z ##[debug]Agent environment resources - Disk: / Available 42906.00 MB out of 306871.00 MB, Memory: Used 8393.00 MB out of 14332.00 MB, CPU: Usage 2.82%
2024-02-29T14:24:58.0445040Z ##[debug]Agent environment resources - Disk: / Available 42906.00 MB out of 306871.00 MB, Memory: Used 8272.00 MB out of 14330.00 MB, CPU: Usage 2.81%
2024-02-29T14:25:03.0844280Z ##[debug]Agent environment resources - Disk: / Available 42906.00 MB out of 306871.00 MB, Memory: Used 8302.00 MB out of 14332.00 MB, CPU: Usage 2.81%
2024-02-29T14:25:08.2371470Z ##[debug]Agent environment resources - Disk: / Available 42906.00 MB out of 306871.00 MB, Memory: Used 8419.00 MB out of 14326.00 MB, CPU: Usage 2.81%
2024-02-29T14:25:13.5832020Z ##[debug]Agent environment resources - Disk: / Available 42909.00 MB out of 306871.00 MB, Memory: Used 8554.00 MB out of 14333.00 MB, CPU: Usage 2.80%
2024-02-29T14:25:18.6605170Z ##[debug]Agent environment resources - Disk: / Available 42909.00 MB out of 306871.00 MB, Memory: Used 8618.00 MB out of 14328.00 MB, CPU: Usage 2.80%
2024-02-29T14:25:23.7240770Z ##[debug]Agent environment resources - Disk: / Available 42909.00 MB out of 306871.00 MB, Memory: Used 8403.00 MB out of 14330.00 MB, CPU: Usage 2.80%
2024-02-29T14:25:28.8306540Z ##[debug]Agent environment resources - Disk: / Available 42909.00 MB out of 306871.00 MB, Memory: Used 8463.00 MB out of 14329.00 MB, CPU: Usage 2.80%
2024-02-29T14:25:33.8693450Z ##[debug]Agent environment resources - Disk: / Available 42909.00 MB out of 306871.00 MB, Memory: Used 8440.00 MB out of 14332.00 MB, CPU: Usage 2.79%
2024-02-29T14:25:39.0059900Z ##[debug]Agent environment resources - Disk: / Available 42909.00 MB out of 306871.00 MB, Memory: Used 8482.00 MB out of 14330.00 MB, CPU: Usage 2.79%
2024-02-29T14:25:44.1011210Z ##[debug]Agent environment resources - Disk: / Available 42909.00 MB out of 306871.00 MB, Memory: Used 8513.00 MB out of 14332.00 MB, CPU: Usage 2.78%
2024-02-29T14:25:49.1288500Z ##[debug]Agent environment resources - Disk: / Available 42909.00 MB out of 306871.00 MB, Memory: Used 8502.00 MB out of 14332.00 MB, CPU: Usage 2.78%
2024-02-29T14:25:54.1524410Z ##[debug]Agent environment resources - Disk: / Available 42909.00 MB out of 306871.00 MB, Memory: Used 8489.00 MB out of 14332.00 MB, CPU: Usage 2.78%
2024-02-29T14:25:59.2047050Z ##[debug]Agent environment resources - Disk: / Available 42909.00 MB out of 306871.00 MB, Memory: Used 8520.00 MB out of 14328.00 MB, CPU: Usage 2.77%
2024-02-29T14:26:04.2406980Z ##[debug]Agent environment resources - Disk: / Available 42909.00 MB out of 306871.00 MB, Memory: Used 8818.00 MB out of 14330.00 MB, CPU: Usage 2.77%
2024-02-29T14:26:09.2624180Z ##[debug]Agent environment resources - Disk: / Available 42909.00 MB out of 306871.00 MB, Memory: Used 8899.00 MB out of 14331.00 MB, CPU: Usage 2.77%
2024-02-29T14:26:14.3348220Z ##[debug]Agent environment resources - Disk: / Available 42909.00 MB out of 306871.00 MB, Memory: Used 9008.00 MB out of 14331.00 MB, CPU: Usage 2.76%
2024-02-29T14:26:19.3911710Z ##[debug]Agent environment resources - Disk: / Available 42909.00 MB out of 306871.00 MB, Memory: Used 9177.00 MB out of 14329.00 MB, CPU: Usage 2.76%
2024-02-29T14:26:24.9645900Z ##[debug]Agent environment resources - Disk: / Available 42909.00 MB out of 306871.00 MB, Memory: Used 9536.00 MB out of 14331.00 MB, CPU: Usage 2.76%
2024-02-29T14:26:30.0244610Z ##[debug]Agent environment resources - Disk: / Available 42909.00 MB out of 306871.00 MB, Memory: Used 9328.00 MB out of 14330.00 MB, CPU: Usage 2.76%
2024-02-29T14:26:35.0390260Z ##[debug]Agent environment resources - Disk: / Available 42909.00 MB out of 306871.00 MB, Memory: Used 9364.00 MB out of 14331.00 MB, CPU: Usage 2.75%
2024-02-29T14:26:40.2801140Z ##[debug]Agent environment resources - Disk: / Available 42909.00 MB out of 306871.00 MB, Memory: Used 9305.00 MB out of 14330.00 MB, CPU: Usage 2.75%
2024-02-29T14:26:45.3236620Z ##[debug]Agent environment resources - Disk: / Available 42909.00 MB out of 306871.00 MB, Memory: Used 9477.00 MB out of 14333.00 MB, CPU: Usage 2.75%
2024-02-29T14:26:50.3511530Z ##[debug]Agent environment resources - Disk: / Available 42909.00 MB out of 306871.00 MB, Memory: Used 9127.00 MB out of 14331.00 MB, CPU: Usage 2.74%
2024-02-29T14:26:55.4579840Z ##[debug]Agent environment resources - Disk: / Available 42909.00 MB out of 306871.00 MB, Memory: Used 9132.00 MB out of 14332.00 MB, CPU: Usage 2.74%
2024-02-29T14:27:00.6120500Z ##[debug]Agent environment resources - Disk: / Available 42909.00 MB out of 306871.00 MB, Memory: Used 9140.00 MB out of 14334.00 MB, CPU: Usage 2.74%
2024-02-29T14:27:05.6385060Z ##[debug]Agent environment resources - Disk: / Available 42909.00 MB out of 306871.00 MB, Memory: Used 9157.00 MB out of 14331.00 MB, CPU: Usage 2.74%
2024-02-29T14:27:10.6718990Z ##[debug]Agent environment resources - Disk: / Available 42909.00 MB out of 306871.00 MB, Memory: Used 9163.00 MB out of 14330.00 MB, CPU: Usage 2.74%
2024-02-29T14:27:15.7035480Z ##[debug]Agent environment resources - Disk: / Available 42909.00 MB out of 306871.00 MB, Memory: Used 9168.00 MB out of 14331.00 MB, CPU: Usage 2.74%
2024-02-29T14:27:20.8389600Z ##[debug]Agent environment resources - Disk: / Available 42908.00 MB out of 306871.00 MB, Memory: Used 9179.00 MB out of 14332.00 MB, CPU: Usage 2.73%
2024-02-29T14:27:25.8858500Z ##[debug]Agent environment resources - Disk: / Available 42909.00 MB out of 306871.00 MB, Memory: Used 9254.00 MB out of 14329.00 MB, CPU: Usage 2.73%
2024-02-29T14:27:30.8963760Z ##[debug]Agent environment resources - Disk: / Available 42909.00 MB out of 306871.00 MB, Memory: Used 9274.00 MB out of 14330.00 MB, CPU: Usage 2.72%
2024-02-29T14:27:35.9390440Z ##[debug]Agent environment resources - Disk: / Available 42909.00 MB out of 306871.00 MB, Memory: Used 9349.00 MB out of 14331.00 MB, CPU: Usage 2.72%
2024-02-29T14:27:41.0360350Z ##[debug]Agent environment resources - Disk: / Available 42909.00 MB out of 306871.00 MB, Memory: Used 9407.00 MB out of 14331.00 MB, CPU: Usage 2.71%
2024-02-29T14:27:46.0496860Z ##[debug]Agent environment resources - Disk: / Available 42909.00 MB out of 306871.00 MB, Memory: Used 9411.00 MB out of 14331.00 MB, CPU: Usage 2.71%
2024-02-29T14:27:51.1010180Z ##[debug]Agent environment resources - Disk: / Available 42909.00 MB out of 306871.00 MB, Memory: Used 9412.00 MB out of 14330.00 MB, CPU: Usage 2.70%
2024-02-29T14:27:56.1150930Z ##[debug]Agent environment resources - Disk: / Available 42909.00 MB out of 306871.00 MB, Memory: Used 9412.00 MB out of 14331.00 MB, CPU: Usage 2.70%
2024-02-29T14:28:01.1432140Z ##[debug]Agent environment resources - Disk: / Available 42909.00 MB out of 306871.00 MB, Memory: Used 9415.00 MB out of 14331.00 MB, CPU: Usage 2.70%
2024-02-29T14:28:06.1785870Z ##[debug]Agent environment resources - Disk: / Available 42909.00 MB out of 306871.00 MB, Memory: Used 9415.00 MB out of 14331.00 MB, CPU: Usage 2.69%
2024-02-29T14:28:11.2709410Z ##[debug]Agent environment resources - Disk: / Available 42909.00 MB out of 306871.00 MB, Memory: Used 9424.00 MB out of 14334.00 MB, CPU: Usage 2.69%
2024-02-29T14:28:16.3158650Z ##[debug]Agent environment resources - Disk: / Available 42909.00 MB out of 306871.00 MB, Memory: Used 9428.00 MB out of 14329.00 MB, CPU: Usage 2.68%
2024-02-29T14:28:21.4005290Z ##[debug]Agent environment resources - Disk: / Available 42909.00 MB out of 306871.00 MB, Memory: Used 9429.00 MB out of 14329.00 MB, CPU: Usage 2.68%
2024-02-29T14:28:26.4933390Z ##[debug]Agent environment resources - Disk: / Available 42909.00 MB out of 306871.00 MB, Memory: Used 9430.00 MB out of 14331.00 MB, CPU: Usage 2.68%
2024-02-29T14:28:31.5130580Z ##[debug]Agent environment resources - Disk: / Available 42909.00 MB out of 306871.00 MB, Memory: Used 9430.00 MB out of 14332.00 MB, CPU: Usage 2.67%
2024-02-29T14:28:36.5240720Z ##[debug]Agent environment resources - Disk: / Available 42909.00 MB out of 306871.00 MB, Memory: Used 9431.00 MB out of 14331.00 MB, CPU: Usage 2.67%
2024-02-29T14:28:41.5439440Z ##[debug]Agent environment resources - Disk: / Available 42909.00 MB out of 306871.00 MB, Memory: Used 9435.00 MB out of 14330.00 MB, CPU: Usage 2.66%
2024-02-29T14:28:46.5798750Z ##[debug]Agent environment resources - Disk: / Available 42909.00 MB out of 306871.00 MB, Memory: Used 9435.00 MB out of 14332.00 MB, CPU: Usage 2.66%
2024-02-29T14:28:51.6818980Z ##[debug]Agent environment resources - Disk: / Available 42909.00 MB out of 306871.00 MB, Memory: Used 9437.00 MB out of 14330.00 MB, CPU: Usage 2.65%
2024-02-29T14:28:56.7117670Z ##[debug]Agent environment resources - Disk: / Available 42909.00 MB out of 306871.00 MB, Memory: Used 9437.00 MB out of 14330.00 MB, CPU: Usage 2.65%
2024-02-29T14:29:01.7466860Z ##[debug]Agent environment resources - Disk: / Available 42909.00 MB out of 306871.00 MB, Memory: Used 9437.00 MB out of 14329.00 MB, CPU: Usage 2.64%
2024-02-29T14:29:06.8464880Z ##[debug]Agent environment resources - Disk: / Available 42909.00 MB out of 306871.00 MB, Memory: Used 9437.00 MB out of 14333.00 MB, CPU: Usage 2.64%
2024-02-29T14:29:11.9461980Z ##[debug]Agent environment resources - Disk: / Available 42909.00 MB out of 306871.00 MB, Memory: Used 9438.00 MB out of 14333.00 MB, CPU: Usage 2.63%
2024-02-29T14:29:17.0303160Z ##[debug]Agent environment resources - Disk: / Available 42909.00 MB out of 306871.00 MB, Memory: Used 9438.00 MB out of 14331.00 MB, CPU: Usage 2.63%
2024-02-29T14:29:22.0479900Z ##[debug]Agent environment resources - Disk: / Available 42909.00 MB out of 306871.00 MB, Memory: Used 9438.00 MB out of 14330.00 MB, CPU: Usage 2.62%
2024-02-29T14:29:27.0845150Z ##[debug]Agent environment resources - Disk: / Available 42909.00 MB out of 306871.00 MB, Memory: Used 9447.00 MB out of 14332.00 MB, CPU: Usage 2.62%
2024-02-29T14:29:32.1969490Z ##[debug]Agent environment resources - Disk: / Available 42909.00 MB out of 306871.00 MB, Memory: Used 9445.00 MB out of 14332.00 MB, CPU: Usage 2.62%
2024-02-29T14:29:37.2057280Z ##[debug]Agent environment resources - Disk: / Available 42909.00 MB out of 306871.00 MB, Memory: Used 9451.00 MB out of 14332.00 MB, CPU: Usage 2.61%
2024-02-29T14:29:42.3483270Z ##[debug]Agent environment resources - Disk: / Available 42909.00 MB out of 306871.00 MB, Memory: Used 9456.00 MB out of 14330.00 MB, CPU: Usage 2.61%
2024-02-29T14:29:47.4528580Z ##[debug]Agent environment resources - Disk: / Available 42909.00 MB out of 306871.00 MB, Memory: Used 9478.00 MB out of 14331.00 MB, CPU: Usage 2.60%
2024-02-29T14:29:52.4804260Z ##[debug]Agent environment resources - Disk: / Available 42908.00 MB out of 306871.00 MB, Memory: Used 9477.00 MB out of 14332.00 MB, CPU: Usage 2.60%
2024-02-29T14:29:57.6123230Z ##[debug]Agent environment resources - Disk: / Available 42908.00 MB out of 306871.00 MB, Memory: Used 9478.00 MB out of 14332.00 MB, CPU: Usage 2.59%
2024-02-29T14:30:02.6384490Z ##[debug]Agent environment resources - Disk: / Available 42908.00 MB out of 306871.00 MB, Memory: Used 9478.00 MB out of 14330.00 MB, CPU: Usage 2.59%
2024-02-29T14:30:07.6473330Z ##[debug]Agent environment resources - Disk: / Available 42908.00 MB out of 306871.00 MB, Memory: Used 9482.00 MB out of 14329.00 MB, CPU: Usage 2.59%
2024-02-29T14:30:12.7801600Z ##[debug]Agent environment resources - Disk: / Available 42908.00 MB out of 306871.00 MB, Memory: Used 9482.00 MB out of 14329.00 MB, CPU: Usage 2.58%
2024-02-29T14:30:17.8137260Z ##[debug]Agent environment resources - Disk: / Available 42908.00 MB out of 306871.00 MB, Memory: Used 9483.00 MB out of 14333.00 MB, CPU: Usage 2.58%
2024-02-29T14:30:22.9083200Z ##[debug]Agent environment resources - Disk: / Available 42908.00 MB out of 306871.00 MB, Memory: Used 9483.00 MB out of 14333.00 MB, CPU: Usage 2.57%
2024-02-29T14:30:28.0517540Z ##[debug]Agent environment resources - Disk: / Available 42908.00 MB out of 306871.00 MB, Memory: Used 9483.00 MB out of 14332.00 MB, CPU: Usage 2.57%
2024-02-29T14:30:33.0779870Z ##[debug]Agent environment resources - Disk: / Available 42908.00 MB out of 306871.00 MB, Memory: Used 9484.00 MB out of 14330.00 MB, CPU: Usage 2.56%
2024-02-29T14:30:38.0864510Z ##[debug]Agent environment resources - Disk: / Available 42908.00 MB out of 306871.00 MB, Memory: Used 9497.00 MB out of 14331.00 MB, CPU: Usage 2.56%
2024-02-29T14:30:43.2157930Z ##[debug]Agent environment resources - Disk: / Available 42908.00 MB out of 306871.00 MB, Memory: Used 9500.00 MB out of 14334.00 MB, CPU: Usage 2.56%
2024-02-29T14:30:48.2459630Z ##[debug]Agent environment resources - Disk: / Available 42908.00 MB out of 306871.00 MB, Memory: Used 9502.00 MB out of 14331.00 MB, CPU: Usage 2.55%
2024-02-29T14:30:53.2697730Z ##[debug]Agent environment resources - Disk: / Available 42908.00 MB out of 306871.00 MB, Memory: Used 9506.00 MB out of 14331.00 MB, CPU: Usage 2.55%
2024-02-29T14:30:58.2779000Z ##[debug]Agent environment resources - Disk: / Available 42908.00 MB out of 306871.00 MB, Memory: Used 9508.00 MB out of 14332.00 MB, CPU: Usage 2.54%
2024-02-29T14:31:03.3148470Z ##[debug]Agent environment resources - Disk: / Available 42908.00 MB out of 306871.00 MB, Memory: Used 9510.00 MB out of 14331.00 MB, CPU: Usage 2.54%
2024-02-29T14:31:08.3427360Z ##[debug]Agent environment resources - Disk: / Available 42908.00 MB out of 306871.00 MB, Memory: Used 9511.00 MB out of 14333.00 MB, CPU: Usage 2.53%
2024-02-29T14:31:13.3752440Z ##[debug]Agent environment resources - Disk: / Available 42908.00 MB out of 306871.00 MB, Memory: Used 9514.00 MB out of 14332.00 MB, CPU: Usage 2.53%
2024-02-29T14:31:18.4244000Z ##[debug]Agent environment resources - Disk: / Available 42908.00 MB out of 306871.00 MB, Memory: Used 9537.00 MB out of 14332.00 MB, CPU: Usage 2.53%
2024-02-29T14:31:23.4469060Z ##[debug]Agent environment resources - Disk: / Available 42908.00 MB out of 306871.00 MB, Memory: Used 9568.00 MB out of 14332.00 MB, CPU: Usage 2.52%
2024-02-29T14:31:28.5635590Z ##[debug]Agent environment resources - Disk: / Available 42908.00 MB out of 306871.00 MB, Memory: Used 9602.00 MB out of 14332.00 MB, CPU: Usage 2.52%
2024-02-29T14:31:33.6110380Z ##[debug]Agent environment resources - Disk: / Available 42908.00 MB out of 306871.00 MB, Memory: Used 9569.00 MB out of 14331.00 MB, CPU: Usage 2.51%
2024-02-29T14:31:38.6728070Z ##[debug]Agent environment resources - Disk: / Available 42908.00 MB out of 306871.00 MB, Memory: Used 9572.00 MB out of 14331.00 MB, CPU: Usage 2.51%
2024-02-29T14:31:43.6865490Z ##[debug]Agent environment resources - Disk: / Available 42908.00 MB out of 306871.00 MB, Memory: Used 9572.00 MB out of 14332.00 MB, CPU: Usage 2.51%
2024-02-29T14:31:48.7184220Z ##[debug]Agent environment resources - Disk: / Available 42908.00 MB out of 306871.00 MB, Memory: Used 9577.00 MB out of 14332.00 MB, CPU: Usage 2.50%
2024-02-29T14:31:53.7792780Z ##[debug]Agent environment resources - Disk: / Available 42908.00 MB out of 306871.00 MB, Memory: Used 9566.00 MB out of 14332.00 MB, CPU: Usage 2.50%
2024-02-29T14:31:58.8128780Z ##[debug]Agent environment resources - Disk: / Available 42908.00 MB out of 306871.00 MB, Memory: Used 9567.00 MB out of 14331.00 MB, CPU: Usage 2.50%
2024-02-29T14:32:03.9143470Z ##[debug]Agent environment resources - Disk: / Available 42908.00 MB out of 306871.00 MB, Memory: Used 9580.00 MB out of 14331.00 MB, CPU: Usage 2.49%
2024-02-29T14:32:08.9408470Z ##[debug]Agent environment resources - Disk: / Available 42908.00 MB out of 306871.00 MB, Memory: Used 9581.00 MB out of 14329.00 MB, CPU: Usage 2.49%
2024-02-29T14:32:13.9769320Z ##[debug]Agent environment resources - Disk: / Available 42908.00 MB out of 306871.00 MB, Memory: Used 9583.00 MB out of 14332.00 MB, CPU: Usage 2.48%
2024-02-29T14:32:19.0750920Z ##[debug]Agent environment resources - Disk: / Available 42908.00 MB out of 306871.00 MB, Memory: Used 9597.00 MB out of 14331.00 MB, CPU: Usage 2.48%
2024-02-29T14:32:24.1447080Z ##[debug]Agent environment resources - Disk: / Available 42908.00 MB out of 306871.00 MB, Memory: Used 9599.00 MB out of 14331.00 MB, CPU: Usage 2.48%
2024-02-29T14:32:29.3290470Z ##[debug]Agent environment resources - Disk: / Available 42908.00 MB out of 306871.00 MB, Memory: Used 9594.00 MB out of 14333.00 MB, CPU: Usage 2.48%
2024-02-29T14:32:34.3452300Z ##[debug]Agent environment resources - Disk: / Available 42908.00 MB out of 306871.00 MB, Memory: Used 9598.00 MB out of 14330.00 MB, CPU: Usage 2.47%
2024-02-29T14:32:39.4454250Z ##[debug]Agent environment resources - Disk: / Available 42908.00 MB out of 306871.00 MB, Memory: Used 9602.00 MB out of 14332.00 MB, CPU: Usage 2.47%
2024-02-29T14:32:44.5464350Z ##[debug]Agent environment resources - Disk: / Available 42908.00 MB out of 306871.00 MB, Memory: Used 9606.00 MB out of 14330.00 MB, CPU: Usage 2.46%
2024-02-29T14:32:49.6094400Z ##[debug]Agent environment resources - Disk: / Available 42908.00 MB out of 306871.00 MB, Memory: Used 9610.00 MB out of 14332.00 MB, CPU: Usage 2.46%
2024-02-29T14:32:54.6465500Z ##[debug]Agent environment resources - Disk: / Available 42908.00 MB out of 306871.00 MB, Memory: Used 9607.00 MB out of 14332.00 MB, CPU: Usage 2.46%
2024-02-29T14:32:59.6778300Z ##[debug]Agent environment resources - Disk: / Available 42908.00 MB out of 306871.00 MB, Memory: Used 9633.00 MB out of 14333.00 MB, CPU: Usage 2.45%
2024-02-29T14:33:04.7114530Z ##[debug]Agent environment resources - Disk: / Available 42908.00 MB out of 306871.00 MB, Memory: Used 9695.00 MB out of 14333.00 MB, CPU: Usage 2.45%
2024-02-29T14:33:09.7751010Z ##[debug]Agent environment resources - Disk: / Available 42908.00 MB out of 306871.00 MB, Memory: Used 9693.00 MB out of 14333.00 MB, CPU: Usage 2.44%
2024-02-29T14:33:14.8546580Z ##[debug]Agent environment resources - Disk: / Available 42908.00 MB out of 306871.00 MB, Memory: Used 9693.00 MB out of 14331.00 MB, CPU: Usage 2.44%
2024-02-29T14:33:19.8978370Z ##[debug]Agent environment resources - Disk: / Available 42908.00 MB out of 306871.00 MB, Memory: Used 9693.00 MB out of 14331.00 MB, CPU: Usage 2.44%
2024-02-29T14:33:24.9102160Z ##[debug]Agent environment resources - Disk: / Available 42908.00 MB out of 306871.00 MB, Memory: Used 9709.00 MB out of 14330.00 MB, CPU: Usage 2.43%
2024-02-29T14:33:29.9462950Z ##[debug]Agent environment resources - Disk: / Available 42908.00 MB out of 306871.00 MB, Memory: Used 9682.00 MB out of 14332.00 MB, CPU: Usage 2.43%
2024-02-29T14:33:34.9547310Z ##[debug]Agent environment resources - Disk: / Available 42908.00 MB out of 306871.00 MB, Memory: Used 9682.00 MB out of 14333.00 MB, CPU: Usage 2.42%
2024-02-29T14:33:39.9786050Z ##[debug]Agent environment resources - Disk: / Available 42908.00 MB out of 306871.00 MB, Memory: Used 9684.00 MB out of 14332.00 MB, CPU: Usage 2.42%
2024-02-29T14:33:45.0102620Z ##[debug]Agent environment resources - Disk: / Available 42908.00 MB out of 306871.00 MB, Memory: Used 9683.00 MB out of 14329.00 MB, CPU: Usage 2.42%
2024-02-29T14:33:50.0433540Z ##[debug]Agent environment resources - Disk: / Available 42908.00 MB out of 306871.00 MB, Memory: Used 9708.00 MB out of 14331.00 MB, CPU: Usage 2.41%
2024-02-29T14:33:55.1451980Z ##[debug]Agent environment resources - Disk: / Available 42908.00 MB out of 306871.00 MB, Memory: Used 9708.00 MB out of 14333.00 MB, CPU: Usage 2.41%
2024-02-29T14:34:00.2432390Z ##[debug]Agent environment resources - Disk: / Available 42908.00 MB out of 306871.00 MB, Memory: Used 9699.00 MB out of 14331.00 MB, CPU: Usage 2.40%
2024-02-29T14:34:05.2606460Z ##[debug]Agent environment resources - Disk: / Available 42908.00 MB out of 306871.00 MB, Memory: Used 9700.00 MB out of 14333.00 MB, CPU: Usage 2.40%
2024-02-29T14:34:10.2822700Z ##[debug]Agent environment resources - Disk: / Available 42908.00 MB out of 306871.00 MB, Memory: Used 9705.00 MB out of 14331.00 MB, CPU: Usage 2.40%
2024-02-29T14:34:15.3326700Z ##[debug]Agent environment resources - Disk: / Available 42908.00 MB out of 306871.00 MB, Memory: Used 9707.00 MB out of 14331.00 MB, CPU: Usage 2.39%
2024-02-29T14:34:20.4578650Z ##[debug]Agent environment resources - Disk: / Available 42908.00 MB out of 306871.00 MB, Memory: Used 9710.00 MB out of 14331.00 MB, CPU: Usage 2.39%
2024-02-29T14:34:25.4798810Z ##[debug]Agent environment resources - Disk: / Available 42908.00 MB out of 306871.00 MB, Memory: Used 9709.00 MB out of 14331.00 MB, CPU: Usage 2.39%
2024-02-29T14:34:30.5695240Z ##[debug]Agent environment resources - Disk: / Available 42908.00 MB out of 306871.00 MB, Memory: Used 9710.00 MB out of 14334.00 MB, CPU: Usage 2.38%
2024-02-29T14:34:35.7019740Z ##[debug]Agent environment resources - Disk: / Available 42908.00 MB out of 306871.00 MB, Memory: Used 9711.00 MB out of 14331.00 MB, CPU: Usage 2.38%
2024-02-29T14:34:40.8112770Z ##[debug]Agent environment resources - Disk: / Available 42908.00 MB out of 306871.00 MB, Memory: Used 9711.00 MB out of 14331.00 MB, CPU: Usage 2.37%
2024-02-29T14:34:45.8958240Z ##[debug]Agent environment resources - Disk: / Available 42908.00 MB out of 306871.00 MB, Memory: Used 9712.00 MB out of 14332.00 MB, CPU: Usage 2.37%
2024-02-29T14:34:50.9126440Z ##[debug]Agent environment resources - Disk: / Available 42908.00 MB out of 306871.00 MB, Memory: Used 9722.00 MB out of 14332.00 MB, CPU: Usage 2.37%
2024-02-29T14:34:55.9447430Z ##[debug]Agent environment resources - Disk: / Available 42908.00 MB out of 306871.00 MB, Memory: Used 9723.00 MB out of 14333.00 MB, CPU: Usage 2.36%
2024-02-29T14:35:01.0585620Z ##[debug]Agent environment resources - Disk: / Available 42908.00 MB out of 306871.00 MB, Memory: Used 9725.00 MB out of 14331.00 MB, CPU: Usage 2.36%
2024-02-29T14:35:06.1754850Z ##[debug]Agent environment resources - Disk: / Available 42908.00 MB out of 306871.00 MB, Memory: Used 9724.00 MB out of 14330.00 MB, CPU: Usage 2.36%
2024-02-29T14:35:11.2069760Z ##[debug]Agent environment resources - Disk: / Available 42908.00 MB out of 306871.00 MB, Memory: Used 9724.00 MB out of 14329.00 MB, CPU: Usage 2.35%
2024-02-29T14:35:16.3437120Z ##[debug]Agent environment resources - Disk: / Available 42908.00 MB out of 306871.00 MB, Memory: Used 9726.00 MB out of 14331.00 MB, CPU: Usage 2.35%
2024-02-29T14:35:21.3870260Z ##[debug]Agent environment resources - Disk: / Available 42908.00 MB out of 306871.00 MB, Memory: Used 9729.00 MB out of 14331.00 MB, CPU: Usage 2.35%
2024-02-29T14:35:26.4877930Z ##[debug]Agent environment resources - Disk: / Available 42908.00 MB out of 306871.00 MB, Memory: Used 9728.00 MB out of 14330.00 MB, CPU: Usage 2.34%
2024-02-29T14:35:31.5052720Z ##[debug]Agent environment resources - Disk: / Available 42908.00 MB out of 306871.00 MB, Memory: Used 9727.00 MB out of 14330.00 MB, CPU: Usage 2.34%
2024-02-29T14:35:36.5188400Z ##[debug]Agent environment resources - Disk: / Available 42908.00 MB out of 306871.00 MB, Memory: Used 9727.00 MB out of 14331.00 MB, CPU: Usage 2.34%
2024-02-29T14:35:41.5803320Z ##[debug]Agent environment resources - Disk: / Available 42908.00 MB out of 306871.00 MB, Memory: Used 9728.00 MB out of 14332.00 MB, CPU: Usage 2.33%
2024-02-29T14:35:46.6112200Z ##[debug]Agent environment resources - Disk: / Available 42908.00 MB out of 306871.00 MB, Memory: Used 9727.00 MB out of 14330.00 MB, CPU: Usage 2.33%
2024-02-29T14:35:51.6761490Z ##[debug]Agent environment resources - Disk: / Available 42908.00 MB out of 306871.00 MB, Memory: Used 9728.00 MB out of 14332.00 MB, CPU: Usage 2.33%
2024-02-29T14:35:56.7114300Z ##[debug]Agent environment resources - Disk: / Available 42908.00 MB out of 306871.00 MB, Memory: Used 9727.00 MB out of 14332.00 MB, CPU: Usage 2.32%
2024-02-29T14:36:01.7456240Z ##[debug]Agent environment resources - Disk: / Available 42908.00 MB out of 306871.00 MB, Memory: Used 9728.00 MB out of 14332.00 MB, CPU: Usage 2.32%
2024-02-29T14:36:06.7773860Z ##[debug]Agent environment resources - Disk: / Available 42908.00 MB out of 306871.00 MB, Memory: Used 9728.00 MB out of 14333.00 MB, CPU: Usage 2.32%
2024-02-29T14:36:11.8591400Z ##[debug]Agent environment resources - Disk: / Available 42908.00 MB out of 306871.00 MB, Memory: Used 9728.00 MB out of 14331.00 MB, CPU: Usage 2.31%
2024-02-29T14:36:16.9476620Z ##[debug]Agent environment resources - Disk: / Available 42908.00 MB out of 306871.00 MB, Memory: Used 9728.00 MB out of 14331.00 MB, CPU: Usage 2.31%
2024-02-29T14:36:21.9785160Z ##[debug]Agent environment resources - Disk: / Available 42908.00 MB out of 306871.00 MB, Memory: Used 9728.00 MB out of 14332.00 MB, CPU: Usage 2.31%
2024-02-29T14:36:27.0125460Z ##[debug]Agent environment resources - Disk: / Available 42908.00 MB out of 306871.00 MB, Memory: Used 9729.00 MB out of 14331.00 MB, CPU: Usage 2.30%
2024-02-29T14:36:32.0473810Z ##[debug]Agent environment resources - Disk: / Available 42908.00 MB out of 306871.00 MB, Memory: Used 9734.00 MB out of 14331.00 MB, CPU: Usage 2.30%
2024-02-29T14:36:37.1339540Z ##[debug]Agent environment resources - Disk: / Available 42908.00 MB out of 306871.00 MB, Memory: Used 9733.00 MB out of 14331.00 MB, CPU: Usage 2.30%
2024-02-29T14:36:42.1452590Z ##[debug]Agent environment resources - Disk: / Available 42907.00 MB out of 306871.00 MB, Memory: Used 9829.00 MB out of 14331.00 MB, CPU: Usage 2.29%
2024-02-29T14:36:47.2420610Z ##[debug]Agent environment resources - Disk: / Available 42907.00 MB out of 306871.00 MB, Memory: Used 10069.00 MB out of 14332.00 MB, CPU: Usage 2.29%
2024-02-29T14:36:52.3387160Z ##[debug]Agent environment resources - Disk: / Available 42907.00 MB out of 306871.00 MB, Memory: Used 10181.00 MB out of 14328.00 MB, CPU: Usage 2.29%
2024-02-29T14:36:57.3500610Z ##[debug]Agent environment resources - Disk: / Available 42907.00 MB out of 306871.00 MB, Memory: Used 10111.00 MB out of 14332.00 MB, CPU: Usage 2.29%
2024-02-29T14:37:02.3777180Z ##[debug]Agent environment resources - Disk: / Available 42907.00 MB out of 306871.00 MB, Memory: Used 9927.00 MB out of 14333.00 MB, CPU: Usage 2.28%
2024-02-29T14:37:07.4907070Z ##[debug]Agent environment resources - Disk: / Available 42907.00 MB out of 306871.00 MB, Memory: Used 9729.00 MB out of 14328.00 MB, CPU: Usage 2.28%
2024-02-29T14:37:12.5123390Z ##[debug]Agent environment resources - Disk: / Available 42907.00 MB out of 306871.00 MB, Memory: Used 9750.00 MB out of 14333.00 MB, CPU: Usage 2.28%
2024-02-29T14:37:17.5265540Z ##[debug]Agent environment resources - Disk: / Available 42907.00 MB out of 306871.00 MB, Memory: Used 9743.00 MB out of 14330.00 MB, CPU: Usage 2.27%
2024-02-29T14:37:22.6742450Z ##[debug]Agent environment resources - Disk: / Available 42907.00 MB out of 306871.00 MB, Memory: Used 9860.00 MB out of 14331.00 MB, CPU: Usage 2.27%
2024-02-29T14:37:27.8448600Z ##[debug]Agent environment resources - Disk: / Available 41896.00 MB out of 306871.00 MB, Memory: Used 9877.00 MB out of 14330.00 MB, CPU: Usage 2.27%
2024-02-29T14:37:32.8658940Z ##[debug]Agent environment resources - Disk: / Available 41896.00 MB out of 306871.00 MB, Memory: Used 9763.00 MB out of 14330.00 MB, CPU: Usage 2.27%
2024-02-29T14:37:37.8932670Z ##[debug]Agent environment resources - Disk: / Available 41896.00 MB out of 306871.00 MB, Memory: Used 9690.00 MB out of 14332.00 MB, CPU: Usage 2.26%
2024-02-29T14:37:42.9044410Z ##[debug]Agent environment resources - Disk: / Available 41896.00 MB out of 306871.00 MB, Memory: Used 9840.00 MB out of 14330.00 MB, CPU: Usage 2.26%
2024-02-29T14:37:47.9225950Z ##[debug]Agent environment resources - Disk: / Available 41896.00 MB out of 306871.00 MB, Memory: Used 9584.00 MB out of 14334.00 MB, CPU: Usage 2.26%
2024-02-29T14:37:52.9865610Z ##[debug]Agent environment resources - Disk: / Available 41896.00 MB out of 306871.00 MB, Memory: Used 9291.00 MB out of 14331.00 MB, CPU: Usage 2.26%
2024-02-29T14:37:58.0131190Z ##[debug]Agent environment resources - Disk: / Available 40872.00 MB out of 306871.00 MB, Memory: Used 8740.00 MB out of 14329.00 MB, CPU: Usage 2.26%
2024-02-29T14:38:03.1638190Z ##[debug]Agent environment resources - Disk: / Available 40872.00 MB out of 306871.00 MB, Memory: Used 7962.00 MB out of 14331.00 MB, CPU: Usage 2.26%
2024-02-29T14:38:08.6861510Z ##[debug]Agent environment resources - Disk: / Available 39848.00 MB out of 306871.00 MB, Memory: Used 6885.00 MB out of 14332.00 MB, CPU: Usage 2.26%
2024-02-29T14:38:17.1289070Z ##[debug]Agent environment resources - Disk: / Available 38695.00 MB out of 306871.00 MB, Memory: Used 6551.00 MB out of 14330.00 MB, CPU: Usage 2.26%
2024-02-29T14:38:22.1579770Z ##[debug]Agent environment resources - Disk: / Available 38456.00 MB out of 306871.00 MB, Memory: Used 6286.00 MB out of 14332.00 MB, CPU: Usage 2.26%
2024-02-29T14:38:27.1937370Z ##[debug]Agent environment resources - Disk: / Available 38456.00 MB out of 306871.00 MB, Memory: Used 6192.00 MB out of 14331.00 MB, CPU: Usage 2.25%
2024-02-29T14:38:32.3253210Z ##[debug]Agent environment resources - Disk: / Available 38456.00 MB out of 306871.00 MB, Memory: Used 2982.00 MB out of 14331.00 MB, CPU: Usage 2.25%
2024-02-29T14:38:37.3909490Z ##[debug]Agent environment resources - Disk: / Available 38456.00 MB out of 306871.00 MB, Memory: Used 3573.00 MB out of 14332.00 MB, CPU: Usage 2.25%
2024-02-29T14:38:42.5047140Z ##[debug]Agent environment resources - Disk: / Available 38456.00 MB out of 306871.00 MB, Memory: Used 4296.00 MB out of 14330.00 MB, CPU: Usage 2.24%
2024-02-29T14:38:47.6203400Z ##[debug]Agent environment resources - Disk: / Available 38456.00 MB out of 306871.00 MB, Memory: Used 4428.00 MB out of 14332.00 MB, CPU: Usage 2.24%
2024-02-29T14:38:52.6544080Z ##[debug]Agent environment resources - Disk: / Available 38456.00 MB out of 306871.00 MB, Memory: Used 4377.00 MB out of 14330.00 MB, CPU: Usage 2.24%
2024-02-29T14:38:57.6659740Z ##[debug]Agent environment resources - Disk: / Available 38456.00 MB out of 306871.00 MB, Memory: Used 4423.00 MB out of 14332.00 MB, CPU: Usage 2.23%
2024-02-29T14:39:02.6899450Z ##[debug]Agent environment resources - Disk: / Available 38456.00 MB out of 306871.00 MB, Memory: Used 4413.00 MB out of 14332.00 MB, CPU: Usage 2.23%
2024-02-29T14:39:07.7376270Z ##[debug]Agent environment resources - Disk: / Available 38456.00 MB out of 306871.00 MB, Memory: Used 4435.00 MB out of 14331.00 MB, CPU: Usage 2.23%
2024-02-29T14:39:12.8167770Z ##[debug]Agent environment resources - Disk: / Available 38456.00 MB out of 306871.00 MB, Memory: Used 4459.00 MB out of 14331.00 MB, CPU: Usage 2.23%
2024-02-29T14:39:17.8695140Z ##[debug]Agent environment resources - Disk: / Available 38456.00 MB out of 306871.00 MB, Memory: Used 4459.00 MB out of 14332.00 MB, CPU: Usage 2.22%
2024-02-29T14:39:23.0181190Z ##[debug]Agent environment resources - Disk: / Available 38455.00 MB out of 306871.00 MB, Memory: Used 4462.00 MB out of 14332.00 MB, CPU: Usage 2.22%
2024-02-29T14:39:28.0684800Z ##[debug]Agent environment resources - Disk: / Available 38455.00 MB out of 306871.00 MB, Memory: Used 4465.00 MB out of 14329.00 MB, CPU: Usage 2.22%
2024-02-29T14:39:33.1062640Z ##[debug]Agent environment resources - Disk: / Available 38455.00 MB out of 306871.00 MB, Memory: Used 4465.00 MB out of 14330.00 MB, CPU: Usage 2.21%
2024-02-29T14:39:38.2329040Z ##[debug]Agent environment resources - Disk: / Available 38455.00 MB out of 306871.00 MB, Memory: Used 4470.00 MB out of 14330.00 MB, CPU: Usage 2.21%
2024-02-29T14:39:43.2564940Z ##[debug]Agent environment resources - Disk: / Available 38455.00 MB out of 306871.00 MB, Memory: Used 4470.00 MB out of 14329.00 MB, CPU: Usage 2.21%
2024-02-29T14:39:48.3103500Z ##[debug]Agent environment resources - Disk: / Available 38455.00 MB out of 306871.00 MB, Memory: Used 4475.00 MB out of 14331.00 MB, CPU: Usage 2.21%
2024-02-29T14:39:53.3260760Z ##[debug]Agent environment resources - Disk: / Available 38455.00 MB out of 306871.00 MB, Memory: Used 4477.00 MB out of 14333.00 MB, CPU: Usage 2.20%
2024-02-29T14:39:58.3923770Z ##[debug]Agent environment resources - Disk: / Available 38455.00 MB out of 306871.00 MB, Memory: Used 4477.00 MB out of 14330.00 MB, CPU: Usage 2.20%
2024-02-29T14:40:03.4254460Z ##[debug]Agent environment resources - Disk: / Available 38455.00 MB out of 306871.00 MB, Memory: Used 4548.00 MB out of 14332.00 MB, CPU: Usage 2.20%
2024-02-29T14:40:08.4345640Z ##[debug]Agent environment resources - Disk: / Available 38455.00 MB out of 306871.00 MB, Memory: Used 4563.00 MB out of 14332.00 MB, CPU: Usage 2.19%
2024-02-29T14:40:13.4607030Z ##[debug]Agent environment resources - Disk: / Available 38455.00 MB out of 306871.00 MB, Memory: Used 4560.00 MB out of 14332.00 MB, CPU: Usage 2.19%
2024-02-29T14:40:18.4897510Z ##[debug]Agent environment resources - Disk: / Available 38455.00 MB out of 306871.00 MB, Memory: Used 4559.00 MB out of 14332.00 MB, CPU: Usage 2.19%
2024-02-29T14:40:23.5176900Z ##[debug]Agent environment resources - Disk: / Available 38455.00 MB out of 306871.00 MB, Memory: Used 4558.00 MB out of 14332.00 MB, CPU: Usage 2.19%
2024-02-29T14:40:28.6717290Z ##[debug]Agent environment resources - Disk: / Available 38455.00 MB out of 306871.00 MB, Memory: Used 4559.00 MB out of 14331.00 MB, CPU: Usage 2.18%
2024-02-29T14:40:33.8246750Z ##[debug]Agent environment resources - Disk: / Available 38455.00 MB out of 306871.00 MB, Memory: Used 4559.00 MB out of 14332.00 MB, CPU: Usage 2.18%
2024-02-29T14:40:38.8572080Z ##[debug]Agent environment resources - Disk: / Available 38455.00 MB out of 306871.00 MB, Memory: Used 4559.00 MB out of 14331.00 MB, CPU: Usage 2.18%
2024-02-29T14:40:43.9444280Z ##[debug]Agent environment resources - Disk: / Available 38455.00 MB out of 306871.00 MB, Memory: Used 4568.00 MB out of 14330.00 MB, CPU: Usage 2.18%
2024-02-29T14:40:48.9588050Z ##[debug]Agent environment resources - Disk: / Available 38455.00 MB out of 306871.00 MB, Memory: Used 4621.00 MB out of 14331.00 MB, CPU: Usage 2.17%
2024-02-29T14:40:53.9919490Z ##[debug]Agent environment resources - Disk: / Available 38455.00 MB out of 306871.00 MB, Memory: Used 4622.00 MB out of 14333.00 MB, CPU: Usage 2.17%
2024-02-29T14:40:59.0253070Z ##[debug]Agent environment resources - Disk: / Available 38455.00 MB out of 306871.00 MB, Memory: Used 4678.00 MB out of 14331.00 MB, CPU: Usage 2.17%
2024-02-29T14:41:04.0509990Z ##[debug]Agent environment resources - Disk: / Available 38455.00 MB out of 306871.00 MB, Memory: Used 4690.00 MB out of 14331.00 MB, CPU: Usage 2.16%
2024-02-29T14:41:09.0914860Z ##[debug]Agent environment resources - Disk: / Available 38455.00 MB out of 306871.00 MB, Memory: Used 4704.00 MB out of 14330.00 MB, CPU: Usage 2.16%
2024-02-29T14:41:14.1024840Z ##[debug]Agent environment resources - Disk: / Available 38455.00 MB out of 306871.00 MB, Memory: Used 4782.00 MB out of 14332.00 MB, CPU: Usage 2.16%
2024-02-29T14:41:19.1158040Z ##[debug]Agent environment resources - Disk: / Available 38455.00 MB out of 306871.00 MB, Memory: Used 4787.00 MB out of 14332.00 MB, CPU: Usage 2.16%
2024-02-29T14:41:24.1918940Z ##[debug]Agent environment resources - Disk: / Available 38455.00 MB out of 306871.00 MB, Memory: Used 4785.00 MB out of 14333.00 MB, CPU: Usage 2.15%
2024-02-29T14:41:29.2421130Z ##[debug]Agent environment resources - Disk: / Available 38455.00 MB out of 306871.00 MB, Memory: Used 4785.00 MB out of 14329.00 MB, CPU: Usage 2.15%
2024-02-29T14:41:34.2567240Z ##[debug]Agent environment resources - Disk: / Available 38455.00 MB out of 306871.00 MB, Memory: Used 4785.00 MB out of 14333.00 MB, CPU: Usage 2.15%
2024-02-29T14:41:39.2924790Z ##[debug]Agent environment resources - Disk: / Available 38455.00 MB out of 306871.00 MB, Memory: Used 4785.00 MB out of 14332.00 MB, CPU: Usage 2.14%
2024-02-29T14:41:44.3898030Z ##[debug]Agent environment resources - Disk: / Available 38455.00 MB out of 306871.00 MB, Memory: Used 4789.00 MB out of 14330.00 MB, CPU: Usage 2.14%
2024-02-29T14:41:49.4578060Z ##[debug]Agent environment resources - Disk: / Available 38455.00 MB out of 306871.00 MB, Memory: Used 4843.00 MB out of 14334.00 MB, CPU: Usage 2.14%
2024-02-29T14:41:54.5519410Z ##[debug]Agent environment resources - Disk: / Available 38455.00 MB out of 306871.00 MB, Memory: Used 4842.00 MB out of 14332.00 MB, CPU: Usage 2.14%
2024-02-29T14:41:59.5717590Z ##[debug]Agent environment resources - Disk: / Available 38455.00 MB out of 306871.00 MB, Memory: Used 4819.00 MB out of 14332.00 MB, CPU: Usage 2.13%
2024-02-29T14:42:04.6507920Z ##[debug]Agent environment resources - Disk: / Available 38455.00 MB out of 306871.00 MB, Memory: Used 4810.00 MB out of 14332.00 MB, CPU: Usage 2.13%
2024-02-29T14:42:09.7567460Z ##[debug]Agent environment resources - Disk: / Available 38455.00 MB out of 306871.00 MB, Memory: Used 4809.00 MB out of 14332.00 MB, CPU: Usage 2.13%
2024-02-29T14:42:14.7906580Z ##[debug]Agent environment resources - Disk: / Available 38455.00 MB out of 306871.00 MB, Memory: Used 4813.00 MB out of 14330.00 MB, CPU: Usage 2.13%
2024-02-29T14:42:19.9279600Z ##[debug]Agent environment resources - Disk: / Available 38455.00 MB out of 306871.00 MB, Memory: Used 4813.00 MB out of 14330.00 MB, CPU: Usage 2.12%
2024-02-29T14:42:24.9564020Z ##[debug]Agent environment resources - Disk: / Available 38455.00 MB out of 306871.00 MB, Memory: Used 4813.00 MB out of 14332.00 MB, CPU: Usage 2.12%
2024-02-29T14:42:30.0070660Z ##[debug]Agent environment resources - Disk: / Available 38455.00 MB out of 306871.00 MB, Memory: Used 4827.00 MB out of 14331.00 MB, CPU: Usage 2.12%
2024-02-29T14:42:35.0210440Z ##[debug]Agent environment resources - Disk: / Available 38455.00 MB out of 306871.00 MB, Memory: Used 4871.00 MB out of 14332.00 MB, CPU: Usage 2.12%
2024-02-29T14:42:40.0581070Z ##[debug]Agent environment resources - Disk: / Available 38455.00 MB out of 306871.00 MB, Memory: Used 4975.00 MB out of 14331.00 MB, CPU: Usage 2.11%
2024-02-29T14:42:45.0923180Z ##[debug]Agent environment resources - Disk: / Available 38455.00 MB out of 306871.00 MB, Memory: Used 5101.00 MB out of 14331.00 MB, CPU: Usage 2.11%
2024-02-29T14:42:50.1926610Z ##[debug]Agent environment resources - Disk: / Available 38455.00 MB out of 306871.00 MB, Memory: Used 5218.00 MB out of 14330.00 MB, CPU: Usage 2.11%
2024-02-29T14:42:55.3056220Z ##[debug]Agent environment resources - Disk: / Available 38454.00 MB out of 306871.00 MB, Memory: Used 5338.00 MB out of 14330.00 MB, CPU: Usage 2.11%
2024-02-29T14:43:00.3260090Z ##[debug]Agent environment resources - Disk: / Available 38454.00 MB out of 306871.00 MB, Memory: Used 5450.00 MB out of 14331.00 MB, CPU: Usage 2.10%
2024-02-29T14:43:05.4383330Z ##[debug]Agent environment resources - Disk: / Available 38454.00 MB out of 306871.00 MB, Memory: Used 5573.00 MB out of 14331.00 MB, CPU: Usage 2.10%
2024-02-29T14:43:10.4578160Z ##[debug]Agent environment resources - Disk: / Available 38454.00 MB out of 306871.00 MB, Memory: Used 5686.00 MB out of 14329.00 MB, CPU: Usage 2.10%
2024-02-29T14:43:15.5605790Z ##[debug]Agent environment resources - Disk: / Available 38454.00 MB out of 306871.00 MB, Memory: Used 5805.00 MB out of 14329.00 MB, CPU: Usage 2.10%
2024-02-29T14:43:20.5941540Z ##[debug]Agent environment resources - Disk: / Available 38454.00 MB out of 306871.00 MB, Memory: Used 5917.00 MB out of 14331.00 MB, CPU: Usage 2.09%
2024-02-29T14:43:25.6506460Z ##[debug]Agent environment resources - Disk: / Available 38454.00 MB out of 306871.00 MB, Memory: Used 6013.00 MB out of 14330.00 MB, CPU: Usage 2.09%
2024-02-29T14:43:30.6733020Z ##[debug]Agent environment resources - Disk: / Available 38454.00 MB out of 306871.00 MB, Memory: Used 6171.00 MB out of 14333.00 MB, CPU: Usage 2.09%
2024-02-29T14:43:35.6930720Z ##[debug]Agent environment resources - Disk: / Available 38454.00 MB out of 306871.00 MB, Memory: Used 6290.00 MB out of 14330.00 MB, CPU: Usage 2.09%
2024-02-29T14:43:40.7039530Z ##[debug]Agent environment resources - Disk: / Available 38454.00 MB out of 306871.00 MB, Memory: Used 6309.00 MB out of 14332.00 MB, CPU: Usage 2.08%
2024-02-29T14:43:45.7261920Z ##[debug]Agent environment resources - Disk: / Available 38454.00 MB out of 306871.00 MB, Memory: Used 6316.00 MB out of 14332.00 MB, CPU: Usage 2.08%
2024-02-29T14:43:50.8273650Z ##[debug]Agent environment resources - Disk: / Available 38454.00 MB out of 306871.00 MB, Memory: Used 6431.00 MB out of 14330.00 MB, CPU: Usage 2.08%
2024-02-29T14:43:55.8568230Z ##[debug]Agent environment resources - Disk: / Available 38454.00 MB out of 306871.00 MB, Memory: Used 6548.00 MB out of 14331.00 MB, CPU: Usage 2.08%
2024-02-29T14:44:00.8995150Z ##[debug]Agent environment resources - Disk: / Available 38454.00 MB out of 306871.00 MB, Memory: Used 6647.00 MB out of 14332.00 MB, CPU: Usage 2.07%
2024-02-29T14:44:05.9349510Z ##[debug]Agent environment resources - Disk: / Available 38454.00 MB out of 306871.00 MB, Memory: Used 6758.00 MB out of 14333.00 MB, CPU: Usage 2.07%
2024-02-29T14:44:10.9849260Z ##[debug]Agent environment resources - Disk: / Available 38454.00 MB out of 306871.00 MB, Memory: Used 6871.00 MB out of 14330.00 MB, CPU: Usage 2.07%
2024-02-29T14:44:16.1404590Z ##[debug]Agent environment resources - Disk: / Available 38454.00 MB out of 306871.00 MB, Memory: Used 6990.00 MB out of 14330.00 MB, CPU: Usage 2.07%
2024-02-29T14:44:21.2018860Z ##[debug]Agent environment resources - Disk: / Available 38454.00 MB out of 306871.00 MB, Memory: Used 7104.00 MB out of 14332.00 MB, CPU: Usage 2.06%
2024-02-29T14:44:26.2917550Z ##[debug]Agent environment resources - Disk: / Available 38454.00 MB out of 306871.00 MB, Memory: Used 7221.00 MB out of 14331.00 MB, CPU: Usage 2.06%
2024-02-29T14:44:31.3062890Z ##[debug]Agent environment resources - Disk: / Available 38454.00 MB out of 306871.00 MB, Memory: Used 7333.00 MB out of 14332.00 MB, CPU: Usage 2.06%
2024-02-29T14:44:36.3158440Z ##[debug]Agent environment resources - Disk: / Available 38454.00 MB out of 306871.00 MB, Memory: Used 7453.00 MB out of 14330.00 MB, CPU: Usage 2.06%
2024-02-29T14:44:41.3651130Z ##[debug]Agent environment resources - Disk: / Available 38454.00 MB out of 306871.00 MB, Memory: Used 7564.00 MB out of 14332.00 MB, CPU: Usage 2.05%
2024-02-29T14:44:46.4032640Z ##[debug]Agent environment resources - Disk: / Available 38454.00 MB out of 306871.00 MB, Memory: Used 7685.00 MB out of 14330.00 MB, CPU: Usage 2.05%
2024-02-29T14:44:51.4959790Z ##[debug]Agent environment resources - Disk: / Available 38454.00 MB out of 306871.00 MB, Memory: Used 7677.00 MB out of 14332.00 MB, CPU: Usage 2.05%
2024-02-29T14:44:56.5263700Z ##[debug]Agent environment resources - Disk: / Available 38454.00 MB out of 306871.00 MB, Memory: Used 7663.00 MB out of 14334.00 MB, CPU: Usage 2.05%
2024-02-29T14:45:01.5738750Z ##[debug]Agent environment resources - Disk: / Available 38454.00 MB out of 306871.00 MB, Memory: Used 7764.00 MB out of 14330.00 MB, CPU: Usage 2.05%
2024-02-29T14:45:06.6941400Z ##[debug]Agent environment resources - Disk: / Available 38454.00 MB out of 306871.00 MB, Memory: Used 7863.00 MB out of 14332.00 MB, CPU: Usage 2.04%
2024-02-29T14:45:11.7247630Z ##[debug]Agent environment resources - Disk: / Available 38454.00 MB out of 306871.00 MB, Memory: Used 7970.00 MB out of 14333.00 MB, CPU: Usage 2.04%
2024-02-29T14:45:16.7574970Z ##[debug]Agent environment resources - Disk: / Available 38454.00 MB out of 306871.00 MB, Memory: Used 8088.00 MB out of 14331.00 MB, CPU: Usage 2.04%
2024-02-29T14:45:21.8366070Z ##[debug]Agent environment resources - Disk: / Available 38454.00 MB out of 306871.00 MB, Memory: Used 8200.00 MB out of 14332.00 MB, CPU: Usage 2.04%
2024-02-29T14:45:26.8568120Z ##[debug]Agent environment resources - Disk: / Available 38454.00 MB out of 306871.00 MB, Memory: Used 8307.00 MB out of 14330.00 MB, CPU: Usage 2.03%
2024-02-29T14:45:31.8918730Z ##[debug]Agent environment resources - Disk: / Available 38454.00 MB out of 306871.00 MB, Memory: Used 8400.00 MB out of 14330.00 MB, CPU: Usage 2.03%
2024-02-29T14:45:36.9241570Z ##[debug]Agent environment resources - Disk: / Available 38454.00 MB out of 306871.00 MB, Memory: Used 8510.00 MB out of 14330.00 MB, CPU: Usage 2.03%
2024-02-29T14:45:41.9878460Z ##[debug]Agent environment resources - Disk: / Available 38454.00 MB out of 306871.00 MB, Memory: Used 8609.00 MB out of 14330.00 MB, CPU: Usage 2.03%
2024-02-29T14:45:47.0236380Z ##[debug]Agent environment resources - Disk: / Available 38454.00 MB out of 306871.00 MB, Memory: Used 8713.00 MB out of 14331.00 MB, CPU: Usage 2.03%
2024-02-29T14:45:52.0583550Z ##[debug]Agent environment resources - Disk: / Available 38454.00 MB out of 306871.00 MB, Memory: Used 8828.00 MB out of 14333.00 MB, CPU: Usage 2.03%
2024-02-29T14:45:57.0927500Z ##[debug]Agent environment resources - Disk: / Available 38454.00 MB out of 306871.00 MB, Memory: Used 8942.00 MB out of 14331.00 MB, CPU: Usage 2.02%
2024-02-29T14:46:02.1057030Z ##[debug]Agent environment resources - Disk: / Available 38454.00 MB out of 306871.00 MB, Memory: Used 8649.00 MB out of 14331.00 MB, CPU: Usage 2.02%
2024-02-29T14:46:07.1240250Z ##[debug]Agent environment resources - Disk: / Available 38454.00 MB out of 306871.00 MB, Memory: Used 8602.00 MB out of 14331.00 MB, CPU: Usage 2.02%
2024-02-29T14:46:12.1439650Z ##[debug]Agent environment resources - Disk: / Available 38454.00 MB out of 306871.00 MB, Memory: Used 8238.00 MB out of 14330.00 MB, CPU: Usage 2.02%
2024-02-29T14:46:17.1636060Z ##[debug]Agent environment resources - Disk: / Available 38454.00 MB out of 306871.00 MB, Memory: Used 8020.00 MB out of 14332.00 MB, CPU: Usage 2.02%
2024-02-29T14:46:22.1976540Z ##[debug]Agent environment resources - Disk: / Available 38454.00 MB out of 306871.00 MB, Memory: Used 8015.00 MB out of 14331.00 MB, CPU: Usage 2.01%
2024-02-29T14:46:27.2440310Z ##[debug]Agent environment resources - Disk: / Available 38454.00 MB out of 306871.00 MB, Memory: Used 8038.00 MB out of 14332.00 MB, CPU: Usage 2.01%
2024-02-29T14:46:32.2888560Z ##[debug]Agent environment resources - Disk: / Available 38454.00 MB out of 306871.00 MB, Memory: Used 8091.00 MB out of 14328.00 MB, CPU: Usage 2.01%
2024-02-29T14:46:37.3994900Z ##[debug]Agent environment resources - Disk: / Available 38454.00 MB out of 306871.00 MB, Memory: Used 8123.00 MB out of 14332.00 MB, CPU: Usage 2.01%
2024-02-29T14:46:42.5401820Z ##[debug]Agent environment resources - Disk: / Available 38454.00 MB out of 306871.00 MB, Memory: Used 8150.00 MB out of 14332.00 MB, CPU: Usage 2.00%
2024-02-29T14:46:47.5660390Z ##[debug]Agent environment resources - Disk: / Available 38454.00 MB out of 306871.00 MB, Memory: Used 8195.00 MB out of 14330.00 MB, CPU: Usage 2.00%
2024-02-29T14:46:52.6002240Z ##[debug]Agent environment resources - Disk: / Available 38454.00 MB out of 306871.00 MB, Memory: Used 8227.00 MB out of 14332.00 MB, CPU: Usage 2.00%
2024-02-29T14:46:57.6321000Z ##[debug]Agent environment resources - Disk: / Available 38454.00 MB out of 306871.00 MB, Memory: Used 8253.00 MB out of 14333.00 MB, CPU: Usage 2.00%
2024-02-29T14:47:02.6640220Z ##[debug]Agent environment resources - Disk: / Available 38454.00 MB out of 306871.00 MB, Memory: Used 8292.00 MB out of 14332.00 MB, CPU: Usage 2.00%
2024-02-29T14:47:07.7077470Z ##[debug]Agent environment resources - Disk: / Available 38454.00 MB out of 306871.00 MB, Memory: Used 8317.00 MB out of 14332.00 MB, CPU: Usage 1.99%
2024-02-29T14:47:12.7195240Z ##[debug]Agent environment resources - Disk: / Available 38454.00 MB out of 306871.00 MB, Memory: Used 8344.00 MB out of 14330.00 MB, CPU: Usage 1.99%
2024-02-29T14:47:17.7738860Z ##[debug]Agent environment resources - Disk: / Available 38454.00 MB out of 306871.00 MB, Memory: Used 8366.00 MB out of 14331.00 MB, CPU: Usage 1.99%
2024-02-29T14:47:22.8236320Z ##[debug]Agent environment resources - Disk: / Available 38454.00 MB out of 306871.00 MB, Memory: Used 8389.00 MB out of 14328.00 MB, CPU: Usage 1.99%
2024-02-29T14:47:27.8508160Z ##[debug]Agent environment resources - Disk: / Available 38454.00 MB out of 306871.00 MB, Memory: Used 8404.00 MB out of 14329.00 MB, CPU: Usage 1.99%
2024-02-29T14:47:32.9071720Z ##[debug]Agent environment resources - Disk: / Available 38375.00 MB out of 306871.00 MB, Memory: Used 8456.00 MB out of 14332.00 MB, CPU: Usage 1.99%
2024-02-29T14:47:37.9242900Z ##[debug]Agent environment resources - Disk: / Available 38412.00 MB out of 306871.00 MB, Memory: Used 8489.00 MB out of 14331.00 MB, CPU: Usage 1.99%
2024-02-29T14:47:42.9809160Z ##[debug]Agent environment resources - Disk: / Available 38293.00 MB out of 306871.00 MB, Memory: Used 8605.00 MB out of 14330.00 MB, CPU: Usage 1.99%
2024-02-29T14:47:48.0333800Z ##[debug]Agent environment resources - Disk: / Available 38229.00 MB out of 306871.00 MB, Memory: Used 8537.00 MB out of 14329.00 MB, CPU: Usage 1.99%
2024-02-29T14:47:53.0517890Z ##[debug]Agent environment resources - Disk: / Available 37996.00 MB out of 306871.00 MB, Memory: Used 8822.00 MB out of 14333.00 MB, CPU: Usage 1.99%
2024-02-29T14:47:58.1069330Z ##[debug]Agent environment resources - Disk: / Available 37724.00 MB out of 306871.00 MB, Memory: Used 8920.00 MB out of 14331.00 MB, CPU: Usage 1.99%
2024-02-29T14:48:03.2235460Z ##[debug]Agent environment resources - Disk: / Available 37273.00 MB out of 306871.00 MB, Memory: Used 8917.00 MB out of 14331.00 MB, CPU: Usage 1.99%
2024-02-29T14:48:08.2960400Z ##[debug]Agent environment resources - Disk: / Available 37207.00 MB out of 306871.00 MB, Memory: Used 8796.00 MB out of 14330.00 MB, CPU: Usage 1.99%
2024-02-29T14:48:13.3423910Z ##[debug]Agent environment resources - Disk: / Available 37005.00 MB out of 306871.00 MB, Memory: Used 8710.00 MB out of 14333.00 MB, CPU: Usage 1.99%
2024-02-29T14:48:18.3808340Z ##[debug]Agent environment resources - Disk: / Available 37232.00 MB out of 306871.00 MB, Memory: Used 8755.00 MB out of 14331.00 MB, CPU: Usage 1.99%
2024-02-29T14:48:23.5715530Z ##[debug]Agent environment resources - Disk: / Available 37232.00 MB out of 306871.00 MB, Memory: Used 8848.00 MB out of 14333.00 MB, CPU: Usage 1.99%
2024-02-29T14:48:28.6523450Z ##[debug]Agent environment resources - Disk: / Available 37231.00 MB out of 306871.00 MB, Memory: Used 8860.00 MB out of 14331.00 MB, CPU: Usage 1.99%
2024-02-29T14:48:33.7574980Z ##[debug]Agent environment resources - Disk: / Available 37218.00 MB out of 306871.00 MB, Memory: Used 8886.00 MB out of 14330.00 MB, CPU: Usage 1.98%
2024-02-29T14:48:38.8395250Z ##[debug]Agent environment resources - Disk: / Available 37218.00 MB out of 306871.00 MB, Memory: Used 8910.00 MB out of 14330.00 MB, CPU: Usage 1.98%
2024-02-29T14:48:43.8560720Z ##[debug]Agent environment resources - Disk: / Available 37218.00 MB out of 306871.00 MB, Memory: Used 8933.00 MB out of 14331.00 MB, CPU: Usage 1.98%
2024-02-29T14:48:48.9671520Z ##[debug]Agent environment resources - Disk: / Available 37218.00 MB out of 306871.00 MB, Memory: Used 8958.00 MB out of 14331.00 MB, CPU: Usage 1.98%
2024-02-29T14:48:54.0325950Z ##[debug]Agent environment resources - Disk: / Available 37218.00 MB out of 306871.00 MB, Memory: Used 8985.00 MB out of 14330.00 MB, CPU: Usage 1.98%
2024-02-29T14:48:59.0755390Z ##[debug]Agent environment resources - Disk: / Available 37218.00 MB out of 306871.00 MB, Memory: Used 9010.00 MB out of 14331.00 MB, CPU: Usage 1.98%
2024-02-29T14:49:04.0943010Z ##[debug]Agent environment resources - Disk: / Available 37218.00 MB out of 306871.00 MB, Memory: Used 9071.00 MB out of 14331.00 MB, CPU: Usage 1.98%
2024-02-29T14:49:09.1320040Z ##[debug]Agent environment resources - Disk: / Available 37218.00 MB out of 306871.00 MB, Memory: Used 9090.00 MB out of 14332.00 MB, CPU: Usage 1.97%
2024-02-29T14:49:14.2075960Z ##[debug]Agent environment resources - Disk: / Available 37218.00 MB out of 306871.00 MB, Memory: Used 9087.00 MB out of 14333.00 MB, CPU: Usage 1.97%
2024-02-29T14:49:19.2451980Z ##[debug]Agent environment resources - Disk: / Available 37218.00 MB out of 306871.00 MB, Memory: Used 9124.00 MB out of 14332.00 MB, CPU: Usage 1.97%
2024-02-29T14:49:24.2683290Z ##[debug]Agent environment resources - Disk: / Available 37218.00 MB out of 306871.00 MB, Memory: Used 9127.00 MB out of 14332.00 MB, CPU: Usage 1.97%
2024-02-29T14:49:29.2988190Z ##[debug]Agent environment resources - Disk: / Available 37218.00 MB out of 306871.00 MB, Memory: Used 9129.00 MB out of 14330.00 MB, CPU: Usage 1.96%
2024-02-29T14:49:34.3326610Z ##[debug]Agent environment resources - Disk: / Available 37218.00 MB out of 306871.00 MB, Memory: Used 9165.00 MB out of 14332.00 MB, CPU: Usage 1.96%
2024-02-29T14:49:39.3522440Z ##[debug]Agent environment resources - Disk: / Available 37218.00 MB out of 306871.00 MB, Memory: Used 9163.00 MB out of 14331.00 MB, CPU: Usage 1.96%
2024-02-29T14:49:44.3657110Z ##[debug]Agent environment resources - Disk: / Available 37218.00 MB out of 306871.00 MB, Memory: Used 9163.00 MB out of 14330.00 MB, CPU: Usage 1.96%
2024-02-29T14:49:49.3976780Z ##[debug]Agent environment resources - Disk: / Available 37216.00 MB out of 306871.00 MB, Memory: Used 9170.00 MB out of 14331.00 MB, CPU: Usage 1.96%
2024-02-29T14:49:54.4329750Z ##[debug]Agent environment resources - Disk: / Available 37216.00 MB out of 306871.00 MB, Memory: Used 9169.00 MB out of 14330.00 MB, CPU: Usage 1.96%
2024-02-29T14:49:59.5429660Z ##[debug]Agent environment resources - Disk: / Available 37216.00 MB out of 306871.00 MB, Memory: Used 9170.00 MB out of 14328.00 MB, CPU: Usage 1.95%
2024-02-29T14:50:04.6712980Z ##[debug]Agent environment resources - Disk: / Available 37202.00 MB out of 306871.00 MB, Memory: Used 9150.00 MB out of 14330.00 MB, CPU: Usage 1.95%
2024-02-29T14:50:09.7535740Z ##[debug]Agent environment resources - Disk: / Available 37202.00 MB out of 306871.00 MB, Memory: Used 9154.00 MB out of 14329.00 MB, CPU: Usage 1.95%
2024-02-29T14:50:14.8038910Z ##[debug]Agent environment resources - Disk: / Available 37202.00 MB out of 306871.00 MB, Memory: Used 9154.00 MB out of 14330.00 MB, CPU: Usage 1.95%
2024-02-29T14:50:19.8286890Z ##[debug]Agent environment resources - Disk: / Available 37202.00 MB out of 306871.00 MB, Memory: Used 9154.00 MB out of 14331.00 MB, CPU: Usage 1.95%
2024-02-29T14:50:24.8673340Z ##[debug]Agent environment resources - Disk: / Available 37202.00 MB out of 306871.00 MB, Memory: Used 9154.00 MB out of 14331.00 MB, CPU: Usage 1.95%
2024-02-29T14:50:30.0221050Z ##[debug]Agent environment resources - Disk: / Available 37202.00 MB out of 306871.00 MB, Memory: Used 9154.00 MB out of 14333.00 MB, CPU: Usage 1.94%
2024-02-29T14:50:35.0447280Z ##[debug]Agent environment resources - Disk: / Available 37202.00 MB out of 306871.00 MB, Memory: Used 9155.00 MB out of 14331.00 MB, CPU: Usage 1.94%
2024-02-29T14:50:40.0616020Z ##[debug]Agent environment resources - Disk: / Available 37202.00 MB out of 306871.00 MB, Memory: Used 9155.00 MB out of 14334.00 MB, CPU: Usage 1.94%
2024-02-29T14:50:45.0988100Z ##[debug]Agent environment resources - Disk: / Available 37202.00 MB out of 306871.00 MB, Memory: Used 9158.00 MB out of 14332.00 MB, CPU: Usage 1.94%
2024-02-29T14:50:50.1310660Z ##[debug]Agent environment resources - Disk: / Available 37202.00 MB out of 306871.00 MB, Memory: Used 9159.00 MB out of 14330.00 MB, CPU: Usage 1.94%
2024-02-29T14:50:55.1667620Z ##[debug]Agent environment resources - Disk: / Available 37202.00 MB out of 306871.00 MB, Memory: Used 9162.00 MB out of 14332.00 MB, CPU: Usage 1.94%
2024-02-29T14:51:00.3492060Z ##[debug]Agent environment resources - Disk: / Available 37202.00 MB out of 306871.00 MB, Memory: Used 9161.00 MB out of 14334.00 MB, CPU: Usage 1.93%
2024-02-29T14:51:05.4017650Z ##[debug]Agent environment resources - Disk: / Available 37202.00 MB out of 306871.00 MB, Memory: Used 9163.00 MB out of 14331.00 MB, CPU: Usage 1.93%
2024-02-29T14:51:10.4949290Z ##[debug]Agent environment resources - Disk: / Available 37202.00 MB out of 306871.00 MB, Memory: Used 9164.00 MB out of 14331.00 MB, CPU: Usage 1.93%
2024-02-29T14:51:15.5588980Z ##[debug]Agent environment resources - Disk: / Available 37202.00 MB out of 306871.00 MB, Memory: Used 9164.00 MB out of 14333.00 MB, CPU: Usage 1.93%
2024-02-29T14:51:20.6025760Z ##[debug]Agent environment resources - Disk: / Available 37202.00 MB out of 306871.00 MB, Memory: Used 9165.00 MB out of 14331.00 MB, CPU: Usage 1.93%
2024-02-29T14:51:25.6184290Z ##[debug]Agent environment resources - Disk: / Available 37202.00 MB out of 306871.00 MB, Memory: Used 9166.00 MB out of 14331.00 MB, CPU: Usage 1.92%
2024-02-29T14:51:30.6767970Z ##[debug]Agent environment resources - Disk: / Available 37202.00 MB out of 306871.00 MB, Memory: Used 9166.00 MB out of 14331.00 MB, CPU: Usage 1.92%
2024-02-29T14:51:35.8001440Z ##[debug]Agent environment resources - Disk: / Available 37202.00 MB out of 306871.00 MB, Memory: Used 9170.00 MB out of 14331.00 MB, CPU: Usage 1.92%
2024-02-29T14:51:40.8654960Z ##[debug]Agent environment resources - Disk: / Available 37202.00 MB out of 306871.00 MB, Memory: Used 9171.00 MB out of 14329.00 MB, CPU: Usage 1.92%
2024-02-29T14:51:45.9770240Z ##[debug]Agent environment resources - Disk: / Available 37202.00 MB out of 306871.00 MB, Memory: Used 9172.00 MB out of 14331.00 MB, CPU: Usage 1.92%
2024-02-29T14:51:51.0147290Z ##[debug]Agent environment resources - Disk: / Available 37202.00 MB out of 306871.00 MB, Memory: Used 9175.00 MB out of 14330.00 MB, CPU: Usage 1.92%
2024-02-29T14:51:56.0319280Z ##[debug]Agent environment resources - Disk: / Available 37202.00 MB out of 306871.00 MB, Memory: Used 9172.00 MB out of 14330.00 MB, CPU: Usage 1.91%
2024-02-29T14:52:01.0689940Z ##[debug]Agent environment resources - Disk: / Available 37202.00 MB out of 306871.00 MB, Memory: Used 9180.00 MB out of 14333.00 MB, CPU: Usage 1.91%
2024-02-29T14:52:06.2093340Z ##[debug]Agent environment resources - Disk: / Available 37202.00 MB out of 306871.00 MB, Memory: Used 9181.00 MB out of 14333.00 MB, CPU: Usage 1.91%
2024-02-29T14:52:11.2620710Z ##[debug]Agent environment resources - Disk: / Available 37202.00 MB out of 306871.00 MB, Memory: Used 9184.00 MB out of 14330.00 MB, CPU: Usage 1.91%
2024-02-29T14:52:16.3657860Z ##[debug]Agent environment resources - Disk: / Available 37202.00 MB out of 306871.00 MB, Memory: Used 9184.00 MB out of 14332.00 MB, CPU: Usage 1.91%
2024-02-29T14:52:21.4177480Z ##[debug]Agent environment resources - Disk: / Available 37202.00 MB out of 306871.00 MB, Memory: Used 9182.00 MB out of 14332.00 MB, CPU: Usage 1.91%
2024-02-29T14:52:26.5523000Z ##[debug]Agent environment resources - Disk: / Available 37202.00 MB out of 306871.00 MB, Memory: Used 9182.00 MB out of 14333.00 MB, CPU: Usage 1.90%
2024-02-29T14:52:31.5997170Z ##[debug]Agent environment resources - Disk: / Available 37202.00 MB out of 306871.00 MB, Memory: Used 9185.00 MB out of 14331.00 MB, CPU: Usage 1.90%
2024-02-29T14:52:36.7542010Z ##[debug]Agent environment resources - Disk: / Available 37202.00 MB out of 306871.00 MB, Memory: Used 9186.00 MB out of 14332.00 MB, CPU: Usage 1.90%
2024-02-29T14:52:41.7864230Z ##[debug]Agent environment resources - Disk: / Available 37202.00 MB out of 306871.00 MB, Memory: Used 9188.00 MB out of 14332.00 MB, CPU: Usage 1.90%
2024-02-29T14:52:46.9335970Z ##[debug]Agent environment resources - Disk: / Available 37202.00 MB out of 306871.00 MB, Memory: Used 9188.00 MB out of 14331.00 MB, CPU: Usage 1.90%
2024-02-29T14:52:51.9535940Z ##[debug]Agent environment resources - Disk: / Available 37202.00 MB out of 306871.00 MB, Memory: Used 9186.00 MB out of 14332.00 MB, CPU: Usage 1.89%
2024-02-29T14:52:56.9955010Z ##[debug]Agent environment resources - Disk: / Available 37202.00 MB out of 306871.00 MB, Memory: Used 9185.00 MB out of 14332.00 MB, CPU: Usage 1.89%
2024-02-29T14:53:02.0320110Z ##[debug]Agent environment resources - Disk: / Available 37202.00 MB out of 306871.00 MB, Memory: Used 9186.00 MB out of 14331.00 MB, CPU: Usage 1.89%
2024-02-29T14:53:07.0648330Z ##[debug]Agent environment resources - Disk: / Available 37202.00 MB out of 306871.00 MB, Memory: Used 9186.00 MB out of 14331.00 MB, CPU: Usage 1.89%
2024-02-29T14:53:12.1000160Z ##[debug]Agent environment resources - Disk: / Available 37202.00 MB out of 306871.00 MB, Memory: Used 9189.00 MB out of 14332.00 MB, CPU: Usage 1.89%
2024-02-29T14:53:17.1320360Z ##[debug]Agent environment resources - Disk: / Available 37202.00 MB out of 306871.00 MB, Memory: Used 9189.00 MB out of 14330.00 MB, CPU: Usage 1.89%
2024-02-29T14:53:22.1703620Z ##[debug]Agent environment resources - Disk: / Available 37202.00 MB out of 306871.00 MB, Memory: Used 9188.00 MB out of 14331.00 MB, CPU: Usage 1.88%
2024-02-29T14:53:27.2584230Z ##[debug]Agent environment resources - Disk: / Available 37202.00 MB out of 306871.00 MB, Memory: Used 9188.00 MB out of 14333.00 MB, CPU: Usage 1.88%
2024-02-29T14:53:32.2771270Z ##[debug]Agent environment resources - Disk: / Available 37202.00 MB out of 306871.00 MB, Memory: Used 9188.00 MB out of 14331.00 MB, CPU: Usage 1.88%
2024-02-29T14:53:37.3168770Z ##[debug]Agent environment resources - Disk: / Available 37202.00 MB out of 306871.00 MB, Memory: Used 9188.00 MB out of 14330.00 MB, CPU: Usage 1.88%
2024-02-29T14:53:42.3927160Z ##[debug]Agent environment resources - Disk: / Available 37202.00 MB out of 306871.00 MB, Memory: Used 9188.00 MB out of 14331.00 MB, CPU: Usage 1.88%
2024-02-29T14:53:47.5269940Z ##[debug]Agent environment resources - Disk: / Available 37202.00 MB out of 306871.00 MB, Memory: Used 9188.00 MB out of 14332.00 MB, CPU: Usage 1.88%
2024-02-29T14:53:52.5419690Z ##[debug]Agent environment resources - Disk: / Available 37202.00 MB out of 306871.00 MB, Memory: Used 9188.00 MB out of 14331.00 MB, CPU: Usage 1.87%
2024-02-29T14:53:57.5648750Z ##[debug]Agent environment resources - Disk: / Available 37202.00 MB out of 306871.00 MB, Memory: Used 9188.00 MB out of 14331.00 MB, CPU: Usage 1.87%
2024-02-29T14:54:02.6371250Z ##[debug]Agent environment resources - Disk: / Available 37202.00 MB out of 306871.00 MB, Memory: Used 9188.00 MB out of 14330.00 MB, CPU: Usage 1.87%
2024-02-29T14:54:07.6532590Z ##[debug]Agent environment resources - Disk: / Available 37202.00 MB out of 306871.00 MB, Memory: Used 9188.00 MB out of 14332.00 MB, CPU: Usage 1.87%
2024-02-29T14:54:12.7001580Z ##[debug]Agent environment resources - Disk: / Available 37202.00 MB out of 306871.00 MB, Memory: Used 9188.00 MB out of 14333.00 MB, CPU: Usage 1.87%
2024-02-29T14:54:17.7549120Z ##[debug]Agent environment resources - Disk: / Available 37202.00 MB out of 306871.00 MB, Memory: Used 9188.00 MB out of 14330.00 MB, CPU: Usage 1.86%
2024-02-29T14:54:22.7657600Z ##[debug]Agent environment resources - Disk: / Available 37202.00 MB out of 306871.00 MB, Memory: Used 9191.00 MB out of 14331.00 MB, CPU: Usage 1.86%
2024-02-29T14:54:27.7879540Z ##[debug]Agent environment resources - Disk: / Available 37202.00 MB out of 306871.00 MB, Memory: Used 9186.00 MB out of 14331.00 MB, CPU: Usage 1.86%
2024-02-29T14:54:32.7983220Z ##[debug]Agent environment resources - Disk: / Available 37202.00 MB out of 306871.00 MB, Memory: Used 9185.00 MB out of 14332.00 MB, CPU: Usage 1.86%
2024-02-29T14:54:37.9173760Z ##[debug]Agent environment resources - Disk: / Available 37202.00 MB out of 306871.00 MB, Memory: Used 9185.00 MB out of 14331.00 MB, CPU: Usage 1.86%
2024-02-29T14:54:42.9551460Z ##[debug]Agent environment resources - Disk: / Available 37202.00 MB out of 306871.00 MB, Memory: Used 9186.00 MB out of 14331.00 MB, CPU: Usage 1.86%
2024-02-29T14:54:48.0657870Z ##[debug]Agent environment resources - Disk: / Available 37202.00 MB out of 306871.00 MB, Memory: Used 9190.00 MB out of 14332.00 MB, CPU: Usage 1.85%
2024-02-29T14:54:53.1328020Z ##[debug]Agent environment resources - Disk: / Available 37202.00 MB out of 306871.00 MB, Memory: Used 9190.00 MB out of 14331.00 MB, CPU: Usage 1.85%
2024-02-29T14:54:58.2640840Z ##[debug]Agent environment resources - Disk: / Available 37202.00 MB out of 306871.00 MB, Memory: Used 9191.00 MB out of 14331.00 MB, CPU: Usage 1.85%
2024-02-29T14:55:03.3431930Z ##[debug]Agent environment resources - Disk: / Available 37202.00 MB out of 306871.00 MB, Memory: Used 9191.00 MB out of 14330.00 MB, CPU: Usage 1.85%
2024-02-29T14:55:08.4673430Z ##[debug]Agent environment resources - Disk: / Available 37202.00 MB out of 306871.00 MB, Memory: Used 9192.00 MB out of 14331.00 MB, CPU: Usage 1.85%
2024-02-29T14:55:13.4985150Z ##[debug]Agent environment resources - Disk: / Available 37202.00 MB out of 306871.00 MB, Memory: Used 9189.00 MB out of 14331.00 MB, CPU: Usage 1.85%
2024-02-29T14:55:18.5106110Z ##[debug]Agent environment resources - Disk: / Available 37202.00 MB out of 306871.00 MB, Memory: Used 9189.00 MB out of 14332.00 MB, CPU: Usage 1.84%
2024-02-29T14:55:23.6449470Z ##[debug]Agent environment resources - Disk: / Available 37202.00 MB out of 306871.00 MB, Memory: Used 9189.00 MB out of 14331.00 MB, CPU: Usage 1.84%
2024-02-29T14:55:28.6584030Z ##[debug]Agent environment resources - Disk: / Available 37202.00 MB out of 306871.00 MB, Memory: Used 9189.00 MB out of 14332.00 MB, CPU: Usage 1.84%
2024-02-29T14:55:33.7011200Z ##[debug]Agent environment resources - Disk: / Available 37202.00 MB out of 306871.00 MB, Memory: Used 9192.00 MB out of 14332.00 MB, CPU: Usage 1.84%
2024-02-29T14:55:38.7345620Z ##[debug]Agent environment resources - Disk: / Available 37206.00 MB out of 306871.00 MB, Memory: Used 9188.00 MB out of 14331.00 MB, CPU: Usage 1.84%
2024-02-29T14:55:43.7655790Z ##[debug]Agent environment resources - Disk: / Available 37206.00 MB out of 306871.00 MB, Memory: Used 9188.00 MB out of 14332.00 MB, CPU: Usage 1.83%
2024-02-29T14:55:48.8338480Z ##[debug]Agent environment resources - Disk: / Available 37206.00 MB out of 306871.00 MB, Memory: Used 9188.00 MB out of 14331.00 MB, CPU: Usage 1.83%
2024-02-29T14:55:53.8940340Z ##[debug]Agent environment resources - Disk: / Available 37206.00 MB out of 306871.00 MB, Memory: Used 9187.00 MB out of 14333.00 MB, CPU: Usage 1.83%
2024-02-29T14:55:58.9371890Z ##[debug]Agent environment resources - Disk: / Available 37206.00 MB out of 306871.00 MB, Memory: Used 9187.00 MB out of 14330.00 MB, CPU: Usage 1.83%
2024-02-29T14:56:04.0355260Z ##[debug]Agent environment resources - Disk: / Available 37206.00 MB out of 306871.00 MB, Memory: Used 9188.00 MB out of 14329.00 MB, CPU: Usage 1.83%
2024-02-29T14:56:09.1660130Z ##[debug]Agent environment resources - Disk: / Available 37206.00 MB out of 306871.00 MB, Memory: Used 9188.00 MB out of 14332.00 MB, CPU: Usage 1.83%
2024-02-29T14:56:14.1758060Z ##[debug]Agent environment resources - Disk: / Available 37206.00 MB out of 306871.00 MB, Memory: Used 9188.00 MB out of 14330.00 MB, CPU: Usage 1.82%
2024-02-29T14:56:19.1988600Z ##[debug]Agent environment resources - Disk: / Available 37206.00 MB out of 306871.00 MB, Memory: Used 9189.00 MB out of 14331.00 MB, CPU: Usage 1.82%
2024-02-29T14:56:24.2322080Z ##[debug]Agent environment resources - Disk: / Available 37206.00 MB out of 306871.00 MB, Memory: Used 9189.00 MB out of 14332.00 MB, CPU: Usage 1.82%
2024-02-29T14:56:29.3615880Z ##[debug]Agent environment resources - Disk: / Available 37206.00 MB out of 306871.00 MB, Memory: Used 9196.00 MB out of 14332.00 MB, CPU: Usage 1.82%
2024-02-29T14:56:34.4338340Z ##[debug]Agent environment resources - Disk: / Available 37206.00 MB out of 306871.00 MB, Memory: Used 9197.00 MB out of 14331.00 MB, CPU: Usage 1.82%
2024-02-29T14:56:39.4778840Z ##[debug]Agent environment resources - Disk: / Available 37206.00 MB out of 306871.00 MB, Memory: Used 9197.00 MB out of 14333.00 MB, CPU: Usage 1.82%
2024-02-29T14:56:44.4926640Z ##[debug]Agent environment resources - Disk: / Available 37208.00 MB out of 306871.00 MB, Memory: Used 9200.00 MB out of 14331.00 MB, CPU: Usage 1.81%
2024-02-29T14:56:49.5304880Z ##[debug]Agent environment resources - Disk: / Available 37208.00 MB out of 306871.00 MB, Memory: Used 9200.00 MB out of 14332.00 MB, CPU: Usage 1.81%
2024-02-29T14:56:54.5674120Z ##[debug]Agent environment resources - Disk: / Available 37208.00 MB out of 306871.00 MB, Memory: Used 9199.00 MB out of 14331.00 MB, CPU: Usage 1.81%
2024-02-29T14:56:59.6757080Z ##[debug]Agent environment resources - Disk: / Available 37208.00 MB out of 306871.00 MB, Memory: Used 9199.00 MB out of 14332.00 MB, CPU: Usage 1.81%
2024-02-29T14:57:04.6977990Z ##[debug]Agent environment resources - Disk: / Available 37208.00 MB out of 306871.00 MB, Memory: Used 9200.00 MB out of 14331.00 MB, CPU: Usage 1.81%
2024-02-29T14:57:09.8439270Z ##[debug]Agent environment resources - Disk: / Available 37208.00 MB out of 306871.00 MB, Memory: Used 9200.00 MB out of 14332.00 MB, CPU: Usage 1.81%
2024-02-29T14:57:14.9598370Z ##[debug]Agent environment resources - Disk: / Available 37208.00 MB out of 306871.00 MB, Memory: Used 9200.00 MB out of 14332.00 MB, CPU: Usage 1.80%
2024-02-29T14:57:20.0665430Z ##[debug]Agent environment resources - Disk: / Available 37208.00 MB out of 306871.00 MB, Memory: Used 9200.00 MB out of 14333.00 MB, CPU: Usage 1.80%
2024-02-29T14:57:25.0993350Z ##[debug]Agent environment resources - Disk: / Available 37208.00 MB out of 306871.00 MB, Memory: Used 9200.00 MB out of 14333.00 MB, CPU: Usage 1.80%
2024-02-29T14:57:30.2528800Z ##[debug]Agent environment resources - Disk: / Available 37208.00 MB out of 306871.00 MB, Memory: Used 9200.00 MB out of 14332.00 MB, CPU: Usage 1.80%
2024-02-29T14:57:35.2669820Z ##[debug]Agent environment resources - Disk: / Available 37208.00 MB out of 306871.00 MB, Memory: Used 9201.00 MB out of 14331.00 MB, CPU: Usage 1.80%
2024-02-29T14:57:40.3011820Z ##[debug]Agent environment resources - Disk: / Available 37210.00 MB out of 306871.00 MB, Memory: Used 9210.00 MB out of 14331.00 MB, CPU: Usage 1.79%
2024-02-29T14:57:45.3377810Z ##[debug]Agent environment resources - Disk: / Available 37210.00 MB out of 306871.00 MB, Memory: Used 9209.00 MB out of 14330.00 MB, CPU: Usage 1.79%
2024-02-29T14:57:50.4116340Z ##[debug]Agent environment resources - Disk: / Available 37210.00 MB out of 306871.00 MB, Memory: Used 9209.00 MB out of 14332.00 MB, CPU: Usage 1.79%
2024-02-29T14:57:55.4292540Z ##[debug]Agent environment resources - Disk: / Available 37210.00 MB out of 306871.00 MB, Memory: Used 9212.00 MB out of 14330.00 MB, CPU: Usage 1.79%
2024-02-29T14:58:00.5325920Z ##[debug]Agent environment resources - Disk: / Available 37210.00 MB out of 306871.00 MB, Memory: Used 9210.00 MB out of 14330.00 MB, CPU: Usage 1.79%
2024-02-29T14:58:05.5980540Z ##[debug]Agent environment resources - Disk: / Available 37210.00 MB out of 306871.00 MB, Memory: Used 9209.00 MB out of 14331.00 MB, CPU: Usage 1.79%
2024-02-29T14:58:10.6350720Z ##[debug]Agent environment resources - Disk: / Available 37210.00 MB out of 306871.00 MB, Memory: Used 9210.00 MB out of 14331.00 MB, CPU: Usage 1.79%
2024-02-29T14:58:15.7320050Z ##[debug]Agent environment resources - Disk: / Available 37210.00 MB out of 306871.00 MB, Memory: Used 9210.00 MB out of 14332.00 MB, CPU: Usage 1.78%
2024-02-29T14:58:20.8342810Z ##[debug]Agent environment resources - Disk: / Available 37210.00 MB out of 306871.00 MB, Memory: Used 9209.00 MB out of 14331.00 MB, CPU: Usage 1.78%
2024-02-29T14:58:25.9120520Z ##[debug]Agent environment resources - Disk: / Available 37209.00 MB out of 306871.00 MB, Memory: Used 9208.00 MB out of 14333.00 MB, CPU: Usage 1.78%
2024-02-29T14:58:31.0340860Z ##[debug]Agent environment resources - Disk: / Available 37209.00 MB out of 306871.00 MB, Memory: Used 9208.00 MB out of 14331.00 MB, CPU: Usage 1.78%
2024-02-29T14:58:36.0752350Z ##[debug]Agent environment resources - Disk: / Available 37209.00 MB out of 306871.00 MB, Memory: Used 9208.00 MB out of 14329.00 MB, CPU: Usage 1.78%
2024-02-29T14:58:41.0911290Z ##[debug]Agent environment resources - Disk: / Available 37209.00 MB out of 306871.00 MB, Memory: Used 9208.00 MB out of 14331.00 MB, CPU: Usage 1.78%
2024-02-29T14:58:46.1635890Z ##[debug]Agent environment resources - Disk: / Available 37209.00 MB out of 306871.00 MB, Memory: Used 9208.00 MB out of 14330.00 MB, CPU: Usage 1.77%
2024-02-29T14:58:51.2658910Z ##[debug]Agent environment resources - Disk: / Available 37209.00 MB out of 306871.00 MB, Memory: Used 9209.00 MB out of 14330.00 MB, CPU: Usage 1.77%
2024-02-29T14:58:56.2860640Z ##[debug]Agent environment resources - Disk: / Available 37209.00 MB out of 306871.00 MB, Memory: Used 9209.00 MB out of 14330.00 MB, CPU: Usage 1.77%
2024-02-29T14:59:01.3604230Z ##[debug]Agent environment resources - Disk: / Available 37209.00 MB out of 306871.00 MB, Memory: Used 9209.00 MB out of 14331.00 MB, CPU: Usage 1.77%
2024-02-29T14:59:06.3974060Z ##[debug]Agent environment resources - Disk: / Available 37209.00 MB out of 306871.00 MB, Memory: Used 9213.00 MB out of 14330.00 MB, CPU: Usage 1.77%
2024-02-29T14:59:11.4528320Z ##[debug]Agent environment resources - Disk: / Available 37209.00 MB out of 306871.00 MB, Memory: Used 9211.00 MB out of 14332.00 MB, CPU: Usage 1.77%
2024-02-29T14:59:16.4649040Z ##[debug]Agent environment resources - Disk: / Available 37209.00 MB out of 306871.00 MB, Memory: Used 9210.00 MB out of 14330.00 MB, CPU: Usage 1.77%
2024-02-29T14:59:21.4987050Z ##[debug]Agent environment resources - Disk: / Available 37209.00 MB out of 306871.00 MB, Memory: Used 9210.00 MB out of 14331.00 MB, CPU: Usage 1.76%
2024-02-29T14:59:26.5590330Z ##[debug]Agent environment resources - Disk: / Available 37209.00 MB out of 306871.00 MB, Memory: Used 9210.00 MB out of 14331.00 MB, CPU: Usage 1.76%
2024-02-29T14:59:31.5879230Z ##[debug]Agent environment resources - Disk: / Available 37209.00 MB out of 306871.00 MB, Memory: Used 9210.00 MB out of 14331.00 MB, CPU: Usage 1.76%
2024-02-29T14:59:36.6848060Z ##[debug]Agent environment resources - Disk: / Available 37209.00 MB out of 306871.00 MB, Memory: Used 9210.00 MB out of 14330.00 MB, CPU: Usage 1.76%
2024-02-29T14:59:41.6987080Z ##[debug]Agent environment resources - Disk: / Available 37209.00 MB out of 306871.00 MB, Memory: Used 9210.00 MB out of 14331.00 MB, CPU: Usage 1.76%
2024-02-29T14:59:46.7094940Z ##[debug]Agent environment resources - Disk: / Available 37209.00 MB out of 306871.00 MB, Memory: Used 9210.00 MB out of 14331.00 MB, CPU: Usage 1.76%
2024-02-29T14:59:51.7524130Z ##[debug]Agent environment resources - Disk: / Available 37209.00 MB out of 306871.00 MB, Memory: Used 9210.00 MB out of 14332.00 MB, CPU: Usage 1.75%
2024-02-29T14:59:56.7662830Z ##[debug]Agent environment resources - Disk: / Available 37209.00 MB out of 306871.00 MB, Memory: Used 9210.00 MB out of 14331.00 MB, CPU: Usage 1.75%
2024-02-29T15:00:01.7984390Z ##[debug]Agent environment resources - Disk: / Available 37209.00 MB out of 306871.00 MB, Memory: Used 9210.00 MB out of 14332.00 MB, CPU: Usage 1.75%
2024-02-29T15:00:06.8291570Z ##[debug]Agent environment resources - Disk: / Available 37209.00 MB out of 306871.00 MB, Memory: Used 9210.00 MB out of 14331.00 MB, CPU: Usage 1.75%
2024-02-29T15:00:11.8968830Z ##[debug]Agent environment resources - Disk: / Available 37209.00 MB out of 306871.00 MB, Memory: Used 9212.00 MB out of 14330.00 MB, CPU: Usage 1.75%
2024-02-29T15:00:16.9338400Z ##[debug]Agent environment resources - Disk: / Available 37209.00 MB out of 306871.00 MB, Memory: Used 9216.00 MB out of 14331.00 MB, CPU: Usage 1.75%
2024-02-29T15:00:22.0361700Z ##[debug]Agent environment resources - Disk: / Available 37209.00 MB out of 306871.00 MB, Memory: Used 9214.00 MB out of 14333.00 MB, CPU: Usage 1.75%
2024-02-29T15:00:27.0672480Z ##[debug]Agent environment resources - Disk: / Available 37209.00 MB out of 306871.00 MB, Memory: Used 9214.00 MB out of 14333.00 MB, CPU: Usage 1.74%
2024-02-29T15:00:32.1920520Z ##[debug]Agent environment resources - Disk: / Available 37209.00 MB out of 306871.00 MB, Memory: Used 9213.00 MB out of 14330.00 MB, CPU: Usage 1.74%
2024-02-29T15:00:37.2300290Z ##[debug]Agent environment resources - Disk: / Available 37209.00 MB out of 306871.00 MB, Memory: Used 9213.00 MB out of 14333.00 MB, CPU: Usage 1.74%
2024-02-29T15:00:42.3461300Z ##[debug]Agent environment resources - Disk: / Available 37209.00 MB out of 306871.00 MB, Memory: Used 9213.00 MB out of 14330.00 MB, CPU: Usage 1.74%
2024-02-29T15:00:47.4326770Z ##[debug]Agent environment resources - Disk: / Available 37209.00 MB out of 306871.00 MB, Memory: Used 9213.00 MB out of 14330.00 MB, CPU: Usage 1.74%
2024-02-29T15:00:52.5401500Z ##[debug]Agent environment resources - Disk: / Available 37209.00 MB out of 306871.00 MB, Memory: Used 9213.00 MB out of 14331.00 MB, CPU: Usage 1.74%
2024-02-29T15:00:57.6639190Z ##[debug]Agent environment resources - Disk: / Available 37209.00 MB out of 306871.00 MB, Memory: Used 9214.00 MB out of 14331.00 MB, CPU: Usage 1.74%
2024-02-29T15:01:02.7345630Z ##[debug]Agent environment resources - Disk: / Available 37209.00 MB out of 306871.00 MB, Memory: Used 9214.00 MB out of 14331.00 MB, CPU: Usage 1.74%
2024-02-29T15:01:07.7427830Z ##[debug]Agent environment resources - Disk: / Available 37209.00 MB out of 306871.00 MB, Memory: Used 9214.00 MB out of 14331.00 MB, CPU: Usage 1.73%
2024-02-29T15:01:12.7780560Z ##[debug]Agent environment resources - Disk: / Available 37209.00 MB out of 306871.00 MB, Memory: Used 9215.00 MB out of 14329.00 MB, CPU: Usage 1.73%
2024-02-29T15:01:17.8125310Z ##[debug]Agent environment resources - Disk: / Available 37209.00 MB out of 306871.00 MB, Memory: Used 9215.00 MB out of 14332.00 MB, CPU: Usage 1.73%
2024-02-29T15:01:22.8440570Z ##[debug]Agent environment resources - Disk: / Available 37209.00 MB out of 306871.00 MB, Memory: Used 9214.00 MB out of 14333.00 MB, CPU: Usage 1.73%
2024-02-29T15:01:27.8523850Z ##[debug]Agent environment resources - Disk: / Available 37209.00 MB out of 306871.00 MB, Memory: Used 9217.00 MB out of 14330.00 MB, CPU: Usage 1.73%
2024-02-29T15:01:32.9018940Z ##[debug]Agent environment resources - Disk: / Available 37209.00 MB out of 306871.00 MB, Memory: Used 9215.00 MB out of 14331.00 MB, CPU: Usage 1.73%
2024-02-29T15:01:37.9157320Z ##[debug]Agent environment resources - Disk: / Available 37209.00 MB out of 306871.00 MB, Memory: Used 9215.00 MB out of 14331.00 MB, CPU: Usage 1.72%
2024-02-29T15:01:43.0222380Z ##[debug]Agent environment resources - Disk: / Available 37209.00 MB out of 306871.00 MB, Memory: Used 9214.00 MB out of 14332.00 MB, CPU: Usage 1.72%
2024-02-29T15:01:48.0448280Z ##[debug]Agent environment resources - Disk: / Available 37209.00 MB out of 306871.00 MB, Memory: Used 9214.00 MB out of 14332.00 MB, CPU: Usage 1.72%
2024-02-29T15:01:53.0781390Z ##[debug]Agent environment resources - Disk: / Available 37209.00 MB out of 306871.00 MB, Memory: Used 9215.00 MB out of 14330.00 MB, CPU: Usage 1.72%
2024-02-29T15:01:58.1121440Z ##[debug]Agent environment resources - Disk: / Available 37209.00 MB out of 306871.00 MB, Memory: Used 9213.00 MB out of 14329.00 MB, CPU: Usage 1.72%
2024-02-29T15:02:03.2325680Z ##[debug]Agent environment resources - Disk: / Available 37209.00 MB out of 306871.00 MB, Memory: Used 9214.00 MB out of 14332.00 MB, CPU: Usage 1.72%
2024-02-29T15:02:08.3604990Z ##[debug]Agent environment resources - Disk: / Available 37209.00 MB out of 306871.00 MB, Memory: Used 9272.00 MB out of 14328.00 MB, CPU: Usage 1.72%
2024-02-29T15:02:13.4245550Z ##[debug]Agent environment resources - Disk: / Available 37209.00 MB out of 306871.00 MB, Memory: Used 9329.00 MB out of 14329.00 MB, CPU: Usage 1.72%
2024-02-29T15:02:18.4477530Z ##[debug]Agent environment resources - Disk: / Available 37209.00 MB out of 306871.00 MB, Memory: Used 9371.00 MB out of 14332.00 MB, CPU: Usage 1.71%
2024-02-29T15:02:23.5422770Z ##[debug]Agent environment resources - Disk: / Available 37209.00 MB out of 306871.00 MB, Memory: Used 9337.00 MB out of 14331.00 MB, CPU: Usage 1.71%
2024-02-29T15:02:28.6710510Z ##[debug]Agent environment resources - Disk: / Available 37209.00 MB out of 306871.00 MB, Memory: Used 8424.00 MB out of 14330.00 MB, CPU: Usage 1.71%
2024-02-29T15:02:33.6791780Z ##[debug]Agent environment resources - Disk: / Available 36185.00 MB out of 306871.00 MB, Memory: Used 7759.00 MB out of 14331.00 MB, CPU: Usage 1.71%
2024-02-29T15:02:38.7802210Z ##[debug]Agent environment resources - Disk: / Available 36185.00 MB out of 306871.00 MB, Memory: Used 8314.00 MB out of 14330.00 MB, CPU: Usage 1.71%
2024-02-29T15:02:43.8542970Z ##[debug]Agent environment resources - Disk: / Available 36185.00 MB out of 306871.00 MB, Memory: Used 8287.00 MB out of 14330.00 MB, CPU: Usage 1.71%
2024-02-29T15:02:48.8704700Z ##[debug]Agent environment resources - Disk: / Available 36184.00 MB out of 306871.00 MB, Memory: Used 8212.00 MB out of 14329.00 MB, CPU: Usage 1.71%
2024-02-29T15:02:53.8944720Z ##[debug]Agent environment resources - Disk: / Available 36184.00 MB out of 306871.00 MB, Memory: Used 8189.00 MB out of 14329.00 MB, CPU: Usage 1.71%
2024-02-29T15:02:58.9854830Z ##[debug]Agent environment resources - Disk: / Available 36184.00 MB out of 306871.00 MB, Memory: Used 8189.00 MB out of 14333.00 MB, CPU: Usage 1.71%
2024-02-29T15:03:04.0139990Z ##[debug]Agent environment resources - Disk: / Available 36184.00 MB out of 306871.00 MB, Memory: Used 8226.00 MB out of 14328.00 MB, CPU: Usage 1.71%
2024-02-29T15:03:09.0306670Z ##[debug]Agent environment resources - Disk: / Available 36184.00 MB out of 306871.00 MB, Memory: Used 8279.00 MB out of 14331.00 MB, CPU: Usage 1.71%
2024-02-29T15:03:14.0754760Z ##[debug]Agent environment resources - Disk: / Available 36184.00 MB out of 306871.00 MB, Memory: Used 8285.00 MB out of 14330.00 MB, CPU: Usage 1.70%
2024-02-29T15:03:19.1160610Z ##[debug]Agent environment resources - Disk: / Available 36184.00 MB out of 306871.00 MB, Memory: Used 8319.00 MB out of 14332.00 MB, CPU: Usage 1.70%
2024-02-29T15:03:24.1488940Z ##[debug]Agent environment resources - Disk: / Available 36184.00 MB out of 306871.00 MB, Memory: Used 8325.00 MB out of 14333.00 MB, CPU: Usage 1.70%
2024-02-29T15:03:29.1893370Z ##[debug]Agent environment resources - Disk: / Available 36184.00 MB out of 306871.00 MB, Memory: Used 8365.00 MB out of 14332.00 MB, CPU: Usage 1.70%
2024-02-29T15:03:34.2533020Z ##[debug]Agent environment resources - Disk: / Available 37208.00 MB out of 306871.00 MB, Memory: Used 8335.00 MB out of 14330.00 MB, CPU: Usage 1.70%
2024-02-29T15:03:39.2803010Z ##[debug]Agent environment resources - Disk: / Available 37101.00 MB out of 306871.00 MB, Memory: Used 8117.00 MB out of 14330.00 MB, CPU: Usage 1.70%
2024-02-29T15:03:44.3226830Z ##[debug]Agent environment resources - Disk: / Available 37019.00 MB out of 306871.00 MB, Memory: Used 8424.00 MB out of 14332.00 MB, CPU: Usage 1.70%
2024-02-29T15:03:49.3396570Z ##[debug]Agent environment resources - Disk: / Available 37009.00 MB out of 306871.00 MB, Memory: Used 4746.00 MB out of 14330.00 MB, CPU: Usage 1.70%
2024-02-29T15:03:54.3707380Z ##[debug]Agent environment resources - Disk: / Available 37009.00 MB out of 306871.00 MB, Memory: Used 5030.00 MB out of 14332.00 MB, CPU: Usage 1.69%
2024-02-29T15:03:59.3794560Z ##[debug]Agent environment resources - Disk: / Available 37009.00 MB out of 306871.00 MB, Memory: Used 2988.00 MB out of 14329.00 MB, CPU: Usage 1.69%
2024-02-29T15:04:04.5142250Z ##[debug]Agent environment resources - Disk: / Available 39057.00 MB out of 306871.00 MB, Memory: Used 4562.00 MB out of 14331.00 MB, CPU: Usage 1.69%
2024-02-29T15:04:09.5227890Z ##[debug]Agent environment resources - Disk: / Available 40081.00 MB out of 306871.00 MB, Memory: Used 6118.00 MB out of 14332.00 MB, CPU: Usage 1.69%
2024-02-29T15:04:14.6698070Z ##[debug]Agent environment resources - Disk: / Available 41105.00 MB out of 306871.00 MB, Memory: Used 7460.00 MB out of 14330.00 MB, CPU: Usage 1.69%
2024-02-29T15:04:19.7548720Z ##[debug]Agent environment resources - Disk: / Available 42129.00 MB out of 306871.00 MB, Memory: Used 8552.00 MB out of 14332.00 MB, CPU: Usage 1.69%
2024-02-29T15:04:24.8758150Z ##[debug]Agent environment resources - Disk: / Available 42128.00 MB out of 306871.00 MB, Memory: Used 9284.00 MB out of 14331.00 MB, CPU: Usage 1.69%
2024-02-29T15:04:29.8884690Z ##[debug]Agent environment resources - Disk: / Available 43152.00 MB out of 306871.00 MB, Memory: Used 10343.00 MB out of 14330.00 MB, CPU: Usage 1.68%
2024-02-29T15:04:34.9302940Z ##[debug]Agent environment resources - Disk: / Available 44176.00 MB out of 306871.00 MB, Memory: Used 10319.00 MB out of 14330.00 MB, CPU: Usage 1.68%
2024-02-29T15:04:40.0245130Z ##[debug]Agent environment resources - Disk: / Available 44176.00 MB out of 306871.00 MB, Memory: Used 10386.00 MB out of 14330.00 MB, CPU: Usage 1.68%
2024-02-29T15:04:45.0952030Z ##[debug]Agent environment resources - Disk: / Available 44176.00 MB out of 306871.00 MB, Memory: Used 10328.00 MB out of 14331.00 MB, CPU: Usage 1.68%
2024-02-29T15:04:50.1803880Z ##[debug]Agent environment resources - Disk: / Available 44176.00 MB out of 306871.00 MB, Memory: Used 10587.00 MB out of 14333.00 MB, CPU: Usage 1.68%
2024-02-29T15:04:55.1963980Z ##[debug]Agent environment resources - Disk: / Available 44176.00 MB out of 306871.00 MB, Memory: Used 10553.00 MB out of 14331.00 MB, CPU: Usage 1.68%
2024-02-29T15:05:00.2140330Z ##[debug]Agent environment resources - Disk: / Available 44176.00 MB out of 306871.00 MB, Memory: Used 10290.00 MB out of 14329.00 MB, CPU: Usage 1.68%
2024-02-29T15:05:05.2680290Z ##[debug]Agent environment resources - Disk: / Available 44176.00 MB out of 306871.00 MB, Memory: Used 9941.00 MB out of 14333.00 MB, CPU: Usage 1.68%
2024-02-29T15:05:10.2855090Z ##[debug]Agent environment resources - Disk: / Available 44176.00 MB out of 306871.00 MB, Memory: Used 9646.00 MB out of 14330.00 MB, CPU: Usage 1.68%
2024-02-29T15:05:15.4028160Z ##[debug]Agent environment resources - Disk: / Available 44176.00 MB out of 306871.00 MB, Memory: Used 9249.00 MB out of 14331.00 MB, CPU: Usage 1.68%
2024-02-29T15:05:20.4211660Z ##[debug]Agent environment resources - Disk: / Available 43152.00 MB out of 306871.00 MB, Memory: Used 8802.00 MB out of 14333.00 MB, CPU: Usage 1.68%
2024-02-29T15:05:25.5062290Z ##[debug]Agent environment resources - Disk: / Available 43152.00 MB out of 306871.00 MB, Memory: Used 9063.00 MB out of 14333.00 MB, CPU: Usage 1.67%
2024-02-29T15:05:30.5290830Z ##[debug]Agent environment resources - Disk: / Available 44176.00 MB out of 306871.00 MB, Memory: Used 9582.00 MB out of 14331.00 MB, CPU: Usage 1.67%
2024-02-29T15:05:35.6288000Z ##[debug]Agent environment resources - Disk: / Available 44176.00 MB out of 306871.00 MB, Memory: Used 9795.00 MB out of 14331.00 MB, CPU: Usage 1.67%
2024-02-29T15:05:40.7262780Z ##[debug]Agent environment resources - Disk: / Available 44176.00 MB out of 306871.00 MB, Memory: Used 9841.00 MB out of 14331.00 MB, CPU: Usage 1.67%
2024-02-29T15:05:45.7373400Z ##[debug]Agent environment resources - Disk: / Available 44176.00 MB out of 306871.00 MB, Memory: Used 9725.00 MB out of 14331.00 MB, CPU: Usage 1.67%
2024-02-29T15:05:50.8017850Z ##[debug]Agent environment resources - Disk: / Available 44176.00 MB out of 306871.00 MB, Memory: Used 10052.00 MB out of 14331.00 MB, CPU: Usage 1.67%
2024-02-29T15:05:55.8180760Z ##[debug]Agent environment resources - Disk: / Available 45213.00 MB out of 306871.00 MB, Memory: Used 10122.00 MB out of 14331.00 MB, CPU: Usage 1.67%
2024-02-29T15:06:00.8709300Z ##[debug]Agent environment resources - Disk: / Available 45213.00 MB out of 306871.00 MB, Memory: Used 10252.00 MB out of 14329.00 MB, CPU: Usage 1.67%
2024-02-29T15:06:05.9306240Z ##[debug]Agent environment resources - Disk: / Available 45226.00 MB out of 306871.00 MB, Memory: Used 10140.00 MB out of 14332.00 MB, CPU: Usage 1.67%
2024-02-29T15:06:11.0738360Z ##[debug]Agent environment resources - Disk: / Available 45226.00 MB out of 306871.00 MB, Memory: Used 10176.00 MB out of 14331.00 MB, CPU: Usage 1.67%
2024-02-29T15:06:16.0904490Z ##[debug]Agent environment resources - Disk: / Available 45226.00 MB out of 306871.00 MB, Memory: Used 10213.00 MB out of 14328.00 MB, CPU: Usage 1.67%
2024-02-29T15:06:21.1339520Z ##[debug]Agent environment resources - Disk: / Available 45226.00 MB out of 306871.00 MB, Memory: Used 10276.00 MB out of 14331.00 MB, CPU: Usage 1.67%
2024-02-29T15:06:26.6446350Z ##[debug]Agent environment resources - Disk: / Available 45226.00 MB out of 306871.00 MB, Memory: Used 10314.00 MB out of 14329.00 MB, CPU: Usage 1.68%
2024-02-29T15:06:31.7769550Z ##[debug]Agent environment resources - Disk: / Available 45226.00 MB out of 306871.00 MB, Memory: Used 10075.00 MB out of 14330.00 MB, CPU: Usage 1.68%
2024-02-29T15:06:36.9146070Z ##[debug]Agent environment resources - Disk: / Available 45226.00 MB out of 306871.00 MB, Memory: Used 10172.00 MB out of 14330.00 MB, CPU: Usage 1.68%
2024-02-29T15:06:41.9373000Z ##[debug]Agent environment resources - Disk: / Available 45226.00 MB out of 306871.00 MB, Memory: Used 10169.00 MB out of 14331.00 MB, CPU: Usage 1.68%
2024-02-29T15:06:46.9621730Z ##[debug]Agent environment resources - Disk: / Available 45226.00 MB out of 306871.00 MB, Memory: Used 10166.00 MB out of 14330.00 MB, CPU: Usage 1.68%
2024-02-29T15:06:51.9913710Z ##[debug]Agent environment resources - Disk: / Available 45226.00 MB out of 306871.00 MB, Memory: Used 10108.00 MB out of 14330.00 MB, CPU: Usage 1.68%
2024-02-29T15:06:57.0204380Z ##[debug]Agent environment resources - Disk: / Available 45226.00 MB out of 306871.00 MB, Memory: Used 9855.00 MB out of 14332.00 MB, CPU: Usage 1.68%
2024-02-29T15:07:02.2118340Z ##[debug]Agent environment resources - Disk: / Available 45226.00 MB out of 306871.00 MB, Memory: Used 4485.00 MB out of 14334.00 MB, CPU: Usage 1.68%
2024-02-29T15:07:07.3274260Z ##[debug]Agent environment resources - Disk: / Available 45226.00 MB out of 306871.00 MB, Memory: Used 2354.00 MB out of 14332.00 MB, CPU: Usage 1.68%
2024-02-29T15:07:12.3891410Z ##[debug]Agent environment resources - Disk: / Available 46250.00 MB out of 306871.00 MB, Memory: Used 3142.00 MB out of 14331.00 MB, CPU: Usage 1.68%
2024-02-29T15:07:17.5550150Z ##[debug]Agent environment resources - Disk: / Available 46250.00 MB out of 306871.00 MB, Memory: Used 3672.00 MB out of 14333.00 MB, CPU: Usage 1.68%
2024-02-29T15:07:24.0265740Z ##[debug]Agent environment resources - Disk: / Available 46250.00 MB out of 306871.00 MB, Memory: Used 4136.00 MB out of 14331.00 MB, CPU: Usage 1.68%
2024-02-29T15:07:31.6213620Z ##[debug]Agent environment resources - Disk: / Available 46250.00 MB out of 306871.00 MB, Memory: Used 5096.00 MB out of 14330.00 MB, CPU: Usage 1.68%
2024-02-29T15:07:36.7281370Z ##[debug]Agent environment resources - Disk: / Available 46248.00 MB out of 306871.00 MB, Memory: Used 4012.00 MB out of 14331.00 MB, CPU: Usage 1.68%
2024-02-29T15:07:41.7797270Z ##[debug]Agent environment resources - Disk: / Available 46236.00 MB out of 306871.00 MB, Memory: Used 3451.00 MB out of 14332.00 MB, CPU: Usage 1.67%
2024-02-29T15:07:46.8975910Z ##[debug]Agent environment resources - Disk: / Available 46211.00 MB out of 306871.00 MB, Memory: Used 2925.00 MB out of 14331.00 MB, CPU: Usage 1.67%
2024-02-29T15:07:52.0717940Z ##[debug]Agent environment resources - Disk: / Available 46191.00 MB out of 306871.00 MB, Memory: Used 2954.00 MB out of 14331.00 MB, CPU: Usage 1.67%
2024-02-29T15:07:57.0964960Z ##[debug]Agent environment resources - Disk: / Available 46153.00 MB out of 306871.00 MB, Memory: Used 3108.00 MB out of 14334.00 MB, CPU: Usage 1.67%
2024-02-29T15:08:02.2854670Z ##[debug]Agent environment resources - Disk: / Available 46096.00 MB out of 306871.00 MB, Memory: Used 2981.00 MB out of 14332.00 MB, CPU: Usage 1.67%
2024-02-29T15:08:07.4006220Z ##[debug]Agent environment resources - Disk: / Available 46040.00 MB out of 306871.00 MB, Memory: Used 2968.00 MB out of 14331.00 MB, CPU: Usage 1.67%
2024-02-29T15:08:12.4242480Z ##[debug]Agent environment resources - Disk: / Available 46040.00 MB out of 306871.00 MB, Memory: Used 3190.00 MB out of 14331.00 MB, CPU: Usage 1.67%
2024-02-29T15:08:17.4387710Z ##[debug]Agent environment resources - Disk: / Available 45936.00 MB out of 306871.00 MB, Memory: Used 2861.00 MB out of 14331.00 MB, CPU: Usage 1.67%
2024-02-29T15:08:22.6247570Z ##[debug]Agent environment resources - Disk: / Available 45935.00 MB out of 306871.00 MB, Memory: Used 2964.00 MB out of 14329.00 MB, CPU: Usage 1.67%
2024-02-29T15:08:27.6490290Z ##[debug]Agent environment resources - Disk: / Available 45932.00 MB out of 306871.00 MB, Memory: Used 4165.00 MB out of 14332.00 MB, CPU: Usage 1.67%
2024-02-29T15:08:32.7185900Z ##[debug]Agent environment resources - Disk: / Available 45932.00 MB out of 306871.00 MB, Memory: Used 4550.00 MB out of 14333.00 MB, CPU: Usage 1.67%
2024-02-29T15:08:37.7781300Z ##[debug]Agent environment resources - Disk: / Available 45932.00 MB out of 306871.00 MB, Memory: Used 4561.00 MB out of 14333.00 MB, CPU: Usage 1.67%
2024-02-29T15:08:42.9108060Z ##[debug]Agent environment resources - Disk: / Available 45932.00 MB out of 306871.00 MB, Memory: Used 4970.00 MB out of 14332.00 MB, CPU: Usage 1.67%
2024-02-29T15:08:47.9238050Z ##[debug]Agent environment resources - Disk: / Available 45932.00 MB out of 306871.00 MB, Memory: Used 5777.00 MB out of 14332.00 MB, CPU: Usage 1.67%
2024-02-29T15:08:53.2186660Z ##[debug]Agent environment resources - Disk: / Available 45845.00 MB out of 306871.00 MB, Memory: Used 5853.00 MB out of 14331.00 MB, CPU: Usage 1.67%
2024-02-29T15:08:58.2643560Z ##[debug]Agent environment resources - Disk: / Available 45238.00 MB out of 306871.00 MB, Memory: Used 5341.00 MB out of 14331.00 MB, CPU: Usage 1.68%
2024-02-29T15:09:03.2957990Z ##[debug]Agent environment resources - Disk: / Available 45103.00 MB out of 306871.00 MB, Memory: Used 3472.00 MB out of 14332.00 MB, CPU: Usage 1.68%
2024-02-29T15:09:08.3816770Z ##[debug]Agent environment resources - Disk: / Available 45103.00 MB out of 306871.00 MB, Memory: Used 3938.00 MB out of 14331.00 MB, CPU: Usage 1.68%
2024-02-29T15:09:13.4963130Z ##[debug]Agent environment resources - Disk: / Available 45105.00 MB out of 306871.00 MB, Memory: Used 4359.00 MB out of 14331.00 MB, CPU: Usage 1.67%
2024-02-29T15:09:18.5391730Z ##[debug]Agent environment resources - Disk: / Available 45091.00 MB out of 306871.00 MB, Memory: Used 4541.00 MB out of 14331.00 MB, CPU: Usage 1.67%
2024-02-29T15:09:23.5482460Z ##[debug]Agent environment resources - Disk: / Available 45033.00 MB out of 306871.00 MB, Memory: Used 5142.00 MB out of 14333.00 MB, CPU: Usage 1.67%
2024-02-29T15:09:28.6398790Z ##[debug]Agent environment resources - Disk: / Available 44636.00 MB out of 306871.00 MB, Memory: Used 4031.00 MB out of 14331.00 MB, CPU: Usage 1.67%
2024-02-29T15:09:33.6847730Z ##[debug]Agent environment resources - Disk: / Available 44412.00 MB out of 306871.00 MB, Memory: Used 4003.00 MB out of 14334.00 MB, CPU: Usage 1.67%
2024-02-29T15:09:38.7000200Z ##[debug]Agent environment resources - Disk: / Available 44410.00 MB out of 306871.00 MB, Memory: Used 4122.00 MB out of 14333.00 MB, CPU: Usage 1.67%
2024-02-29T15:09:43.7289580Z ##[debug]Agent environment resources - Disk: / Available 44096.00 MB out of 306871.00 MB, Memory: Used 4393.00 MB out of 14330.00 MB, CPU: Usage 1.67%
2024-02-29T15:09:48.7957700Z ##[debug]Agent environment resources - Disk: / Available 44056.00 MB out of 306871.00 MB, Memory: Used 4355.00 MB out of 14331.00 MB, CPU: Usage 1.67%
2024-02-29T15:09:53.8405960Z ##[debug]Agent environment resources - Disk: / Available 44008.00 MB out of 306871.00 MB, Memory: Used 4282.00 MB out of 14331.00 MB, CPU: Usage 1.67%
2024-02-29T15:09:58.8758820Z ##[debug]Agent environment resources - Disk: / Available 44000.00 MB out of 306871.00 MB, Memory: Used 4238.00 MB out of 14330.00 MB, CPU: Usage 1.67%
2024-02-29T15:10:03.8899190Z ##[debug]Agent environment resources - Disk: / Available 43221.00 MB out of 306871.00 MB, Memory: Used 4553.00 MB out of 14331.00 MB, CPU: Usage 1.67%
2024-02-29T15:10:03.9570080Z   Created the package: bin/Release/net8.0-ios/ios-arm64/publish//ProjectName.Mobile.ipa
2024-02-29T15:10:03.9702880Z TargetFile: /Users/runner/work/1/s/src/app/ProjectName.Mobile/bin/Release/net8.0-ios/ios-arm64/ProjectName.Mobile.dll
2024-02-29T15:10:03.9708960Z TargetProjectDir: /Users/runner/work/1/s/src/app/ProjectName.Mobile
2024-02-29T15:10:03.9717300Z TargetFileOutputDir: /Users/runner/work/1/s/src/app/ProjectName.Mobile/bin/Release/net8.0-ios/ios-arm64
2024-02-29T15:10:03.9720660Z TargetIntermediateOutputDir: /Users/runner/work/1/s/src/app/ProjectName.Mobile/obj/Release/net8.0-ios/ios-arm64/
2024-02-29T15:10:04.1175590Z TargetDeviceSpecificOutputDir:  
2024-02-29T15:10:04.1210550Z TargetDeviceSpecificIntermediateOutputDir:  
2024-02-29T15:10:04.1328520Z .NET SDK version: 8.0.200
2024-02-29T15:10:04.1347200Z TargetRuntimeIdentifier: ios-arm64
2024-02-29T15:10:04.1365150Z DeviceSpecificBuild: False
2024-02-29T15:10:04.1424090Z Starting symbols collection tool
2024-02-29T15:10:04.9300400Z 
2024-02-29T15:10:04.9420540Z 
2024-02-29T15:10:05.9497480Z ##[debug]Exit code 0 received from tool '/bin/bash'
2024-02-29T15:10:05.9546950Z 
2024-02-29T15:10:05.9557390Z ##[debug]STDIO streams have closed for tool '/bin/bash'
2024-02-29T15:10:05.9662510Z ##[debug]task result: Succeeded
2024-02-29T15:10:05.9719110Z ##[debug]Processed: ##vso[task.complete result=Succeeded;done=true;]
2024-02-29T15:10:06.2830590Z ##[section]Finishing: Build project for Release - net8.0-ios

@microsoft-github-policy-service microsoft-github-policy-service bot added need-attention An issue requires our attention/response and removed need-info Waiting for more information before the bug can be investigated labels Feb 29, 2024
@rolfbjarne
Copy link
Member

@takla21 it's expected that the AOT compiler is significantly slower when LLVM is enabled (2-3x slower is not surprising), so I'm not sure if there's anything we can do on our side?

@rolfbjarne rolfbjarne added need-info Waiting for more information before the bug can be investigated no-auto-reply For internal use and removed need-attention An issue requires our attention/response labels Mar 1, 2024
@microsoft-github-policy-service microsoft-github-policy-service bot removed the no-auto-reply For internal use label Mar 1, 2024
@takla21
Copy link
Author

takla21 commented Mar 1, 2024

Lastly, I've tried to add /v:diagnostic -verbosity:n when building the project, and here are the logs

image

fulllogsllvm.txt

@microsoft-github-policy-service microsoft-github-policy-service bot added need-attention An issue requires our attention/response and removed need-info Waiting for more information before the bug can be investigated labels Mar 1, 2024
@rolfbjarne rolfbjarne added bug If an issue is a bug or a pull request a bug fix and removed need-attention An issue requires our attention/response labels Mar 4, 2024
@rolfbjarne
Copy link
Member

So the log revealed an issue: we're running the AOT compiler in parallel, one process per assembly, but we're not limiting the concurrent number of processes, so the build runs a lot of AOT compilers in parallel. Obviously that's not optimal, so I'm working on a fix.

In the meantime I guess the workaround is to just use a longer timeout for your build.

@rolfbjarne rolfbjarne self-assigned this Mar 4, 2024
@IainS1986
Copy link

IainS1986 commented Mar 5, 2024

Not sure if its related - but we've ran into similar long AOT builds of 40 minutes+ compared to 10 minutes before after we added a signed nuget package (so our Core project is now a signed project) - we don't know if this is the cause, we're just investigating.

We've been trying to narrow down what sent our builds from 12mins to 40-60+, and we saw similar long 'pauses' during the AOT stage in the binlog.

@rolfbjarne is what you're mentioning LLVM specific, or general AOT specific?

We've also noticed we only get the long build times on Azure Mac13 images, running locally is fine - so we're also looking to just setup a local agent in the meantime to potentially work around the 'issue'.

@rolfbjarne
Copy link
Member

@rolfbjarne is what you're mentioning LLVM specific, or general AOT specific?

The issue I found is not specific to when LLVM is enabled, it's for any AOT compilation.

However, the problem is that the machine can get overloaded with too many processes doing too much, and since LLVM is much more CPU intensitive than standard AOT compilation, it's entirely possible the problem won't really manifest in standard AOT compilation.

@IainS1986
Copy link

Gotcha. WE've narrowed it down to a specific nuget we've added. We thought it might have been because we also have to sign our project to use the nuget, but turning off signing didn't change things, we think its just having the nuget in the project.

We also don't see slow downs when running builds/publish on local machine. We'll keep an eye out and see if it resolves in the same way for us or not 👍

rolfbjarne added a commit to rolfbjarne/xamarin-macios that referenced this issue Mar 5, 2024
…t call Parallel.ForEach. Fixes xamarin#20210.

This deduplicates some code, and also ensures we specifiy a max limit to the
level of parallelism. This fixes an issue in the AOTCompile and ScnTool tasks,
where we'd have no limit, launching as many subprocesses as tasks there are to
execute. In particular for the AOTCompile task, this can put a rather heavy
burden on build machines, slowing everything down to a crawl.

Fixes xamarin#20210.
@IainS1986
Copy link

IainS1986 commented Mar 7, 2024

Hi @rolfbjarne - would this change appear in macos-13 images in Azure pipelines - if it does is there somewhere I can look to check if the change has made it in (no idea if theres a release page for vm images 🤷 ), just to see if it resolves our longer build times or not 👍

@rolfbjarne
Copy link
Member

would this change appear in macos-13 images in Azure pipelines

I'm not sure how this shows up in these images, if the images have to be updated, or if the build will automatically get the newest versions.

if it does is there somewhere I can look to check if the change has made it in

The fix will be in .NET 9 for sure.

It will probably be in a .NET 8 service release as well, but it's hard to tell at this point, because it depends on other things. In particular it might end up in the supporting release for Xcode 15.3, but I can only confirm when that release has actually been released. And at that point I can give you version numbers you can check on the vm images to see what your build ends up using.

no idea if theres a release page for vm images

The actions/runner-images repository has this information.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug If an issue is a bug or a pull request a bug fix
Projects
None yet
3 participants