SteeltoeOSS / Steeltoe

.NET Components for Externalized Configuration, Database Connectors, Service Discovery, Logging and Distributed Tracing, Application Management, Security, and more.
https://steeltoe.io
Apache License 2.0
1.01k stars 163 forks source link

Samples with UseCloudHosting() don't start on CF when built against main branch #1077

Closed bart-vmware closed 1 year ago

bart-vmware commented 1 year ago

Describe the bug

I'm trying to run the sample at https://github.com/SteeltoeOSS/Samples/tree/main/Connectors/src/MySql, after pointing it to the latest build of Steeltoe main.

The application fails to start on CloudFoundry with the next error:

Unhandled exception. System.IO.IOException: Failed to bind to address http://0.0.0.0:8080: address already in use.

When commenting out the line with .UseCloudHosting() in Program.cs, application start succeeds.

Steps to reproduce

Steps to reproduce the behavior:

  1. Checkout branch https://github.com/SteeltoeOSS/Samples/tree/update-connectors-to-run-against-main
  2. Issue the next commands from a PowerShell console:
    cd Connectors\src\MySql
    dotnet restore --configfile nuget.config
    dotnet publish -r linux-x64
    cf push -f manifest.yml -p bin/Debug/net6.0/linux-x64/publish

Expected behavior

It's unclear to me whether turning off UseCloudHosting() is the right solution, or if it should be called in a different way, or perhaps this is a bug.

Environment (please complete the following information):

bart-vmware commented 1 year ago

Output from cf.exe logs mysql-connector --recent:

   2022-12-15T16:27:06.76+0100 [API/0] OUT Added process: "web"
   2022-12-15T16:27:06.77+0100 [API/0] OUT Created app with guid 35d615c4-2c60-4e45-ba9b-4ba3771035d5
   2022-12-15T16:27:06.78+0100 [API/0] OUT Applied manifest to app with guid 35d615c4-2c60-4e45-ba9b-4ba3771035d5 (---
   2022-12-15T16:27:06.78+0100 [API/0] OUT applications:
   2022-12-15T16:27:06.78+0100 [API/0] OUT - name: mysql-connector
   2022-12-15T16:27:06.78+0100 [API/0] OUT path: C:\Source\Repos\Samples\Connectors\src\MySql\bin\Debug\net6.0\linux-x64\publish
   2022-12-15T16:27:06.78+0100 [API/0] OUT memory: 256M
   2022-12-15T16:27:06.78+0100 [API/0] OUT random-route: true
   2022-12-15T16:27:06.79+0100 [API/0] OUT buildpacks:
   2022-12-15T16:27:06.79+0100 [API/0] OUT - dotnet_core_buildpack
   2022-12-15T16:27:06.79+0100 [API/0] OUT env: "[PRIVATE DATA HIDDEN]"
   2022-12-15T16:27:06.79+0100 [API/0] OUT services:
   2022-12-15T16:27:06.79+0100 [API/0] OUT - myMySqlService
   2022-12-15T16:27:06.79+0100 [API/0] OUT )
   2022-12-15T16:27:11.08+0100 [API/0] OUT Scaling process: "web"
   2022-12-15T16:27:11.11+0100 [API/0] OUT Updated app with guid 35d615c4-2c60-4e45-ba9b-4ba3771035d5 ({"lifecycle"=>{"data"=>{"buildpacks"=>["dotnet_core_buildpack"]}}})
   2022-12-15T16:27:11.18+0100 [API/0] OUT Updated app with guid 35d615c4-2c60-4e45-ba9b-4ba3771035d5 ({"environment_variables"=>"[PRIVATE DATA HIDDEN]"})
   2022-12-15T16:27:16.54+0100 [API/0] OUT Uploading app package for app with guid 35d615c4-2c60-4e45-ba9b-4ba3771035d5
   2022-12-15T16:27:32.56+0100 [API/0] OUT Creating build for app with guid 35d615c4-2c60-4e45-ba9b-4ba3771035d5
   2022-12-15T16:27:32.67+0100 [STG/0] OUT Downloading dotnet_core_buildpack...
   2022-12-15T16:27:32.68+0100 [STG/0] OUT Downloaded dotnet_core_buildpack
   2022-12-15T16:27:32.68+0100 [STG/0] OUT Cell 60c2fa85-ae1d-48b6-835b-6119378b61c3 creating container for instance 1b3a20bc-5c9e-45e1-a7ea-063eca6f6bf7
   2022-12-15T16:27:33.17+0100 [STG/0] OUT Cell 60c2fa85-ae1d-48b6-835b-6119378b61c3 successfully created container for instance 1b3a20bc-5c9e-45e1-a7ea-063eca6f6bf7
   2022-12-15T16:27:34.19+0100 [STG/0] OUT Downloading app package...
   2022-12-15T16:27:37.11+0100 [STG/0] OUT Downloaded app package (49.3M)
   2022-12-15T16:27:37.48+0100 [STG/0] OUT -----> Dotnet-Core Buildpack version 2.4.0
   2022-12-15T16:27:37.48+0100 [STG/0] OUT -----> Supplying Dotnet Core
   2022-12-15T16:27:37.82+0100 [STG/0] OUT -----> Installing libunwind 1.6.2
   2022-12-15T16:27:37.82+0100 [STG/0] OUT Copy [/tmp/buildpacks/dbbad9103217cabb7eb0c005fa2f6afa/dependencies/876758bfae501dbf08bf2e285efb7917/libunwind_1.6.2_linux_noarch_cflinuxfs3_61087b90.tgz]
   2022-12-15T16:27:38.08+0100 [STG/0] OUT -----> Installing libgdiplus 6.1
   2022-12-15T16:27:38.08+0100 [STG/0] OUT Copy [/tmp/buildpacks/dbbad9103217cabb7eb0c005fa2f6afa/dependencies/5a1881fd4b0cfcde65b6c270bb71d20e/libgdiplus_6.1_linux_noarch_cflinuxfs3_bb66aa5a.tgz]
   2022-12-15T16:27:38.30+0100 [STG/0] OUT **WARNING** SDK 6.0.300 in global.json is not available
   2022-12-15T16:27:38.30+0100 [STG/0] OUT falling back to latest version in version line
   2022-12-15T16:27:38.30+0100 [STG/0] OUT -----> Installing dotnet-sdk 6.0.302
   2022-12-15T16:27:38.30+0100 [STG/0] OUT Copy [/tmp/buildpacks/dbbad9103217cabb7eb0c005fa2f6afa/dependencies/bc015df95087ca1b3cba3e40871b6ad4/dotnet-sdk_6.0.302_linux_x64_any-stack_c26c9fc2.tar.xz]
   2022-12-15T16:27:54.06+0100 [STG/0] OUT -----> Installing dotnet-runtime 6.0.7
   2022-12-15T16:27:54.06+0100 [STG/0] OUT Copy [/tmp/buildpacks/dbbad9103217cabb7eb0c005fa2f6afa/dependencies/2186d8aa27a597a1bbd8d95bc8dd632a/dotnet-runtime_6.0.7_linux_x64_any-stack_4c3a31a3.tar.xz]
   2022-12-15T16:27:59.05+0100 [STG/0] OUT -----> Finalizing Dotnet Core
   2022-12-15T16:27:59.05+0100 [STG/0] OUT -----> Cleaning staging area
   2022-12-15T16:27:59.05+0100 [STG/0] OUT Removing dotnet-sdk
   2022-12-15T16:28:09.27+0100 [STG/0] OUT Exit status 0
   2022-12-15T16:28:09.27+0100 [STG/0] OUT Uploading droplet, build artifacts cache...
   2022-12-15T16:28:09.27+0100 [STG/0] OUT Uploading droplet...
   2022-12-15T16:28:09.27+0100 [STG/0] OUT Uploading build artifacts cache...
   2022-12-15T16:28:09.31+0100 [STG/0] OUT Uploaded build artifacts cache (224B)
   2022-12-15T16:28:10.01+0100 [API/0] OUT Creating droplet for app with guid 35d615c4-2c60-4e45-ba9b-4ba3771035d5
   2022-12-15T16:28:13.18+0100 [STG/0] OUT Uploaded droplet (51.6M)
   2022-12-15T16:28:13.19+0100 [STG/0] OUT Uploading complete
   2022-12-15T16:28:13.81+0100 [STG/0] OUT Cell 60c2fa85-ae1d-48b6-835b-6119378b61c3 stopping instance 1b3a20bc-5c9e-45e1-a7ea-063eca6f6bf7
   2022-12-15T16:28:13.81+0100 [STG/0] OUT Cell 60c2fa85-ae1d-48b6-835b-6119378b61c3 destroying container for instance 1b3a20bc-5c9e-45e1-a7ea-063eca6f6bf7
   2022-12-15T16:28:14.51+0100 [API/0] OUT Updated app with guid 35d615c4-2c60-4e45-ba9b-4ba3771035d5 ({:droplet_guid=>"08254803-0096-4b6f-b678-47cab93e85d4"})
   2022-12-15T16:28:14.63+0100 [STG/0] OUT Cell 60c2fa85-ae1d-48b6-835b-6119378b61c3 successfully destroyed container for instance 1b3a20bc-5c9e-45e1-a7ea-063eca6f6bf7
   2022-12-15T16:28:14.70+0100 [API/0] OUT Creating revision for app with guid 35d615c4-2c60-4e45-ba9b-4ba3771035d5
   2022-12-15T16:28:14.83+0100 [API/0] OUT Restarted app with guid 35d615c4-2c60-4e45-ba9b-4ba3771035d5
   2022-12-15T16:28:14.85+0100 [CELL/0] OUT Cell 60c2fa85-ae1d-48b6-835b-6119378b61c3 creating container for instance d8187ddc-3f16-44c2-7b1c-4990
   2022-12-15T16:28:15.40+0100 [CELL/0] OUT Cell 60c2fa85-ae1d-48b6-835b-6119378b61c3 successfully created container for instance d8187ddc-3f16-44c2-7b1c-4990
   2022-12-15T16:28:17.23+0100 [CELL/0] OUT Downloading droplet...
   2022-12-15T16:28:19.77+0100 [CELL/0] OUT Downloaded droplet (51.6M)
   2022-12-15T16:28:19.88+0100 [CELL/0] OUT Starting health monitoring of container
   2022-12-15T16:28:22.30+0100 [APP/PROC/WEB/0] OUT info: Microsoft.AspNetCore.DataProtection.KeyManagement.XmlKeyManager[62]
   2022-12-15T16:28:22.30+0100 [APP/PROC/WEB/0] OUT User profile is available. Using '/home/vcap/app/.aspnet/DataProtection-Keys' as key repository; keys will not be encrypted at rest.
   2022-12-15T16:28:22.30+0100 [APP/PROC/WEB/0] OUT info: Steeltoe.Management.Endpoint.Trace.TraceDiagnosticObserver[0]
   2022-12-15T16:28:22.31+0100 [APP/PROC/WEB/0] OUT DiagnosticObserver HttpTraceDiagnosticObserver Subscribed to Microsoft.AspNetCore
   2022-12-15T16:28:22.31+0100 [APP/PROC/WEB/0] OUT info: Steeltoe.Management.Endpoint.Metrics.Observer.AspNetCoreHostingObserver[0]
   2022-12-15T16:28:22.31+0100 [APP/PROC/WEB/0] OUT DiagnosticObserver AspNetCoreHostingObserver Subscribed to Microsoft.AspNetCore
   2022-12-15T16:28:22.35+0100 [APP/PROC/WEB/0] OUT info: Microsoft.AspNetCore.DataProtection.KeyManagement.XmlKeyManager[58]
   2022-12-15T16:28:22.35+0100 [APP/PROC/WEB/0] OUT Creating key {6138b8e2-e790-445b-8331-741be4d4e673} with creation date 2022-12-15 15:28:22Z, activation date 2022-12-15 15:28:22Z, and expiration date 2023-03-15 15:28:22Z.
   2022-12-15T16:28:22.36+0100 [APP/PROC/WEB/0] OUT warn: Microsoft.AspNetCore.DataProtection.KeyManagement.XmlKeyManager[35]
   2022-12-15T16:28:22.36+0100 [APP/PROC/WEB/0] OUT No XML encryptor configured. Key {6138b8e2-e790-445b-8331-741be4d4e673} may be persisted to storage in unencrypted form.
   2022-12-15T16:28:22.36+0100 [APP/PROC/WEB/0] OUT info: Microsoft.AspNetCore.DataProtection.Repositories.FileSystemXmlRepository[39]
   2022-12-15T16:28:22.36+0100 [APP/PROC/WEB/0] OUT Writing data to file '/home/vcap/app/.aspnet/DataProtection-Keys/key-6138b8e2-e790-445b-8331-741be4d4e673.xml'.
   2022-12-15T16:28:22.42+0100 [APP/PROC/WEB/0] OUT info: Steeltoe.Management.Endpoint.Trace.TraceDiagnosticObserver[0]
   2022-12-15T16:28:22.42+0100 [APP/PROC/WEB/0] OUT DiagnosticObserver HttpTraceDiagnosticObserver Disposed
   2022-12-15T16:28:22.42+0100 [APP/PROC/WEB/0] OUT info: Steeltoe.Management.Endpoint.Metrics.Observer.AspNetCoreHostingObserver[0]
   2022-12-15T16:28:22.42+0100 [APP/PROC/WEB/0] OUT DiagnosticObserver AspNetCoreHostingObserver Disposed
   2022-12-15T16:28:22.45+0100 [APP/PROC/WEB/0] OUT info: Steeltoe.Management.Endpoint.Metrics.Observer.AspNetCoreHostingObserver[0]
   2022-12-15T16:28:22.45+0100 [APP/PROC/WEB/0] OUT DiagnosticObserver AspNetCoreHostingObserver Disposed
   2022-12-15T16:28:22.45+0100 [APP/PROC/WEB/0] OUT info: Steeltoe.Management.Endpoint.Trace.TraceDiagnosticObserver[0]
   2022-12-15T16:28:22.45+0100 [APP/PROC/WEB/0] OUT DiagnosticObserver HttpTraceDiagnosticObserver Disposed
   2022-12-15T16:28:22.46+0100 [APP/PROC/WEB/0] ERR Unhandled exception. System.IO.IOException: Failed to bind to address http://0.0.0.0:8080: address already in use.
   2022-12-15T16:28:22.46+0100 [APP/PROC/WEB/0] ERR ---> Microsoft.AspNetCore.Connections.AddressInUseException: Address already in use
   2022-12-15T16:28:22.46+0100 [APP/PROC/WEB/0] ERR ---> System.Net.Sockets.SocketException (98): Address already in use
   2022-12-15T16:28:22.46+0100 [APP/PROC/WEB/0] ERR at System.Net.Sockets.Socket.UpdateStatusAfterSocketErrorAndThrowException(SocketError error, String callerName)
   2022-12-15T16:28:22.46+0100 [APP/PROC/WEB/0] ERR at System.Net.Sockets.Socket.DoBind(EndPoint endPointSnapshot, SocketAddress socketAddress)
   2022-12-15T16:28:22.46+0100 [APP/PROC/WEB/0] ERR at System.Net.Sockets.Socket.Bind(EndPoint localEP)
   2022-12-15T16:28:22.46+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.SocketTransportOptions.CreateDefaultBoundListenSocket(EndPoint endpoint)
   2022-12-15T16:28:22.46+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.SocketConnectionListener.Bind()
   2022-12-15T16:28:22.46+0100 [APP/PROC/WEB/0] ERR --- End of inner exception stack trace ---
   2022-12-15T16:28:22.46+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.SocketConnectionListener.Bind()
   2022-12-15T16:28:22.46+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.SocketTransportFactory.BindAsync(EndPoint endpoint, CancellationToken cancellationToken)
   2022-12-15T16:28:22.46+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Infrastructure.TransportManager.BindAsync(EndPoint endPoint, ConnectionDelegate connectionDelegate, EndpointConfig endpointConfig, CancellationToken cancellationToken)
   2022-12-15T16:28:22.46+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Core.KestrelServerImpl.<>c__DisplayClass30_0`1.<<StartAsync>g__OnBind|0>d.MoveNext()
   2022-12-15T16:28:22.46+0100 [APP/PROC/WEB/0] ERR --- End of stack trace from previous location ---
   2022-12-15T16:28:22.46+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Core.Internal.AddressBinder.BindEndpointAsync(ListenOptions endpoint, AddressBindContext context, CancellationToken cancellationToken)
   2022-12-15T16:28:22.46+0100 [APP/PROC/WEB/0] ERR --- End of inner exception stack trace ---
   2022-12-15T16:28:22.46+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Core.Internal.AddressBinder.BindEndpointAsync(ListenOptions endpoint, AddressBindContext context, CancellationToken cancellationToken)
   2022-12-15T16:28:22.46+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Core.ListenOptions.BindAsync(AddressBindContext context, CancellationToken cancellationToken)
   2022-12-15T16:28:22.46+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Core.Internal.AddressBinder.AddressesStrategy.BindAsync(AddressBindContext context, CancellationToken cancellationToken)
   2022-12-15T16:28:22.46+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Core.Internal.AddressBinder.BindAsync(IEnumerable`1 listenOptions, AddressBindContext context, CancellationToken cancellationToken)
   2022-12-15T16:28:22.46+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Core.KestrelServerImpl.BindAsync(CancellationToken cancellationToken)
   2022-12-15T16:28:22.46+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Core.KestrelServerImpl.StartAsync[TContext](IHttpApplication`1 application, CancellationToken cancellationToken)
   2022-12-15T16:28:22.46+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Hosting.WebHost.StartAsync(CancellationToken cancellationToken)
   2022-12-15T16:28:22.46+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Hosting.WebHostExtensions.RunAsync(IWebHost host, CancellationToken token, String startupMessage)
   2022-12-15T16:28:22.46+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Hosting.WebHostExtensions.RunAsync(IWebHost host, CancellationToken token, String startupMessage)
   2022-12-15T16:28:22.46+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Hosting.WebHostExtensions.RunAsync(IWebHost host, CancellationToken token)
   2022-12-15T16:28:22.46+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Hosting.WebHostExtensions.Run(IWebHost host)
   2022-12-15T16:28:22.46+0100 [APP/PROC/WEB/0] ERR at MySql.Program.Main(String[] args) in C:\Source\Repos\Samples\Connectors\src\MySql\Program.cs:line 34
   2022-12-15T16:28:22.50+0100 [APP/PROC/WEB/0] OUT Exit status 134
   2022-12-15T16:28:22.51+0100 [CELL/SSHD/0] OUT Exit status 0
   2022-12-15T16:28:29.69+0100 [CELL/0] OUT Cell 60c2fa85-ae1d-48b6-835b-6119378b61c3 stopping instance d8187ddc-3f16-44c2-7b1c-4990
   2022-12-15T16:28:29.69+0100 [CELL/0] OUT Cell 60c2fa85-ae1d-48b6-835b-6119378b61c3 destroying container for instance d8187ddc-3f16-44c2-7b1c-4990
   2022-12-15T16:28:29.69+0100 [API/0] OUT Process has crashed with type: "web"
   2022-12-15T16:28:29.70+0100 [API/0] OUT App instance exited with guid 35d615c4-2c60-4e45-ba9b-4ba3771035d5 payload: {"instance"=>"d8187ddc-3f16-44c2-7b1c-4990", "index"=>0, "cell_id"=>"60c2fa85-ae1d-48b6-835b-6119378b61c3", "reason"=>"CRASHED", "exit_description"=>"APP/PROC/WEB: Exited with status 134", "crash_count"=>1, "crash_timestamp"=>1671118109679364427, "version"=>"b888e317-f50c-40a1-8179-6291f9d564b9"}
   2022-12-15T16:28:29.71+0100 [CELL/0] OUT Cell 6390f008-4cf7-410d-b5dc-1b764ec60e18 creating container for instance 15eb2243-765d-45fa-4976-a782
   2022-12-15T16:28:29.99+0100 [PROXY/0] OUT Exit status 137
   2022-12-15T16:28:30.17+0100 [CELL/0] OUT Cell 6390f008-4cf7-410d-b5dc-1b764ec60e18 successfully created container for instance 15eb2243-765d-45fa-4976-a782
   2022-12-15T16:28:30.20+0100 [CELL/0] OUT Cell 60c2fa85-ae1d-48b6-835b-6119378b61c3 successfully destroyed container for instance d8187ddc-3f16-44c2-7b1c-4990
   2022-12-15T16:28:30.61+0100 [CELL/0] OUT Downloading droplet...
   2022-12-15T16:28:33.33+0100 [CELL/0] OUT Downloaded droplet (51.6M)
   2022-12-15T16:28:33.44+0100 [CELL/0] OUT Starting health monitoring of container
   2022-12-15T16:28:35.72+0100 [APP/PROC/WEB/0] OUT info: Microsoft.AspNetCore.DataProtection.KeyManagement.XmlKeyManager[62]
   2022-12-15T16:28:35.72+0100 [APP/PROC/WEB/0] OUT User profile is available. Using '/home/vcap/app/.aspnet/DataProtection-Keys' as key repository; keys will not be encrypted at rest.
   2022-12-15T16:28:35.73+0100 [APP/PROC/WEB/0] OUT info: Steeltoe.Management.Endpoint.Trace.TraceDiagnosticObserver[0]
   2022-12-15T16:28:35.73+0100 [APP/PROC/WEB/0] OUT DiagnosticObserver HttpTraceDiagnosticObserver Subscribed to Microsoft.AspNetCore
   2022-12-15T16:28:35.73+0100 [APP/PROC/WEB/0] OUT info: Steeltoe.Management.Endpoint.Metrics.Observer.AspNetCoreHostingObserver[0]
   2022-12-15T16:28:35.73+0100 [APP/PROC/WEB/0] OUT DiagnosticObserver AspNetCoreHostingObserver Subscribed to Microsoft.AspNetCore
   2022-12-15T16:28:35.79+0100 [APP/PROC/WEB/0] OUT info: Microsoft.AspNetCore.DataProtection.KeyManagement.XmlKeyManager[58]
   2022-12-15T16:28:35.79+0100 [APP/PROC/WEB/0] OUT Creating key {bd98427b-679f-4e63-9337-c04ec731c366} with creation date 2022-12-15 15:28:35Z, activation date 2022-12-15 15:28:35Z, and expiration date 2023-03-15 15:28:35Z.
   2022-12-15T16:28:35.80+0100 [APP/PROC/WEB/0] OUT warn: Microsoft.AspNetCore.DataProtection.KeyManagement.XmlKeyManager[35]
   2022-12-15T16:28:35.80+0100 [APP/PROC/WEB/0] OUT No XML encryptor configured. Key {bd98427b-679f-4e63-9337-c04ec731c366} may be persisted to storage in unencrypted form.
   2022-12-15T16:28:35.80+0100 [APP/PROC/WEB/0] OUT info: Microsoft.AspNetCore.DataProtection.Repositories.FileSystemXmlRepository[39]
   2022-12-15T16:28:35.80+0100 [APP/PROC/WEB/0] OUT Writing data to file '/home/vcap/app/.aspnet/DataProtection-Keys/key-bd98427b-679f-4e63-9337-c04ec731c366.xml'.
   2022-12-15T16:28:35.89+0100 [APP/PROC/WEB/0] OUT info: Steeltoe.Management.Endpoint.Trace.TraceDiagnosticObserver[0]
   2022-12-15T16:28:35.89+0100 [APP/PROC/WEB/0] OUT DiagnosticObserver HttpTraceDiagnosticObserver Disposed
   2022-12-15T16:28:35.89+0100 [APP/PROC/WEB/0] OUT info: Steeltoe.Management.Endpoint.Metrics.Observer.AspNetCoreHostingObserver[0]
   2022-12-15T16:28:35.89+0100 [APP/PROC/WEB/0] OUT DiagnosticObserver AspNetCoreHostingObserver Disposed
   2022-12-15T16:28:35.93+0100 [APP/PROC/WEB/0] OUT info: Steeltoe.Management.Endpoint.Metrics.Observer.AspNetCoreHostingObserver[0]
   2022-12-15T16:28:35.93+0100 [APP/PROC/WEB/0] OUT DiagnosticObserver AspNetCoreHostingObserver Disposed
   2022-12-15T16:28:35.93+0100 [APP/PROC/WEB/0] OUT info: Steeltoe.Management.Endpoint.Trace.TraceDiagnosticObserver[0]
   2022-12-15T16:28:35.93+0100 [APP/PROC/WEB/0] OUT DiagnosticObserver HttpTraceDiagnosticObserver Disposed
   2022-12-15T16:28:35.95+0100 [APP/PROC/WEB/0] ERR Unhandled exception. System.IO.IOException: Failed to bind to address http://0.0.0.0:8080: address already in use.
   2022-12-15T16:28:35.95+0100 [APP/PROC/WEB/0] ERR ---> Microsoft.AspNetCore.Connections.AddressInUseException: Address already in use
   2022-12-15T16:28:35.95+0100 [APP/PROC/WEB/0] ERR ---> System.Net.Sockets.SocketException (98): Address already in use
   2022-12-15T16:28:35.95+0100 [APP/PROC/WEB/0] ERR at System.Net.Sockets.Socket.UpdateStatusAfterSocketErrorAndThrowException(SocketError error, String callerName)
   2022-12-15T16:28:35.95+0100 [APP/PROC/WEB/0] ERR at System.Net.Sockets.Socket.DoBind(EndPoint endPointSnapshot, SocketAddress socketAddress)
   2022-12-15T16:28:35.95+0100 [APP/PROC/WEB/0] ERR at System.Net.Sockets.Socket.Bind(EndPoint localEP)
   2022-12-15T16:28:35.95+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.SocketTransportOptions.CreateDefaultBoundListenSocket(EndPoint endpoint)
   2022-12-15T16:28:35.95+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.SocketConnectionListener.Bind()
   2022-12-15T16:28:35.95+0100 [APP/PROC/WEB/0] ERR --- End of inner exception stack trace ---
   2022-12-15T16:28:35.95+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.SocketConnectionListener.Bind()
   2022-12-15T16:28:35.95+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.SocketTransportFactory.BindAsync(EndPoint endpoint, CancellationToken cancellationToken)
   2022-12-15T16:28:35.95+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Infrastructure.TransportManager.BindAsync(EndPoint endPoint, ConnectionDelegate connectionDelegate, EndpointConfig endpointConfig, CancellationToken cancellationToken)
   2022-12-15T16:28:35.95+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Core.KestrelServerImpl.<>c__DisplayClass30_0`1.<<StartAsync>g__OnBind|0>d.MoveNext()
   2022-12-15T16:28:35.95+0100 [APP/PROC/WEB/0] ERR --- End of stack trace from previous location ---
   2022-12-15T16:28:35.95+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Core.Internal.AddressBinder.BindEndpointAsync(ListenOptions endpoint, AddressBindContext context, CancellationToken cancellationToken)
   2022-12-15T16:28:35.95+0100 [APP/PROC/WEB/0] ERR --- End of inner exception stack trace ---
   2022-12-15T16:28:35.95+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Core.Internal.AddressBinder.BindEndpointAsync(ListenOptions endpoint, AddressBindContext context, CancellationToken cancellationToken)
   2022-12-15T16:28:35.95+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Core.ListenOptions.BindAsync(AddressBindContext context, CancellationToken cancellationToken)
   2022-12-15T16:28:35.95+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Core.Internal.AddressBinder.AddressesStrategy.BindAsync(AddressBindContext context, CancellationToken cancellationToken)
   2022-12-15T16:28:35.95+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Core.Internal.AddressBinder.BindAsync(IEnumerable`1 listenOptions, AddressBindContext context, CancellationToken cancellationToken)
   2022-12-15T16:28:35.95+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Core.KestrelServerImpl.BindAsync(CancellationToken cancellationToken)
   2022-12-15T16:28:35.95+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Core.KestrelServerImpl.StartAsync[TContext](IHttpApplication`1 application, CancellationToken cancellationToken)
   2022-12-15T16:28:35.95+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Hosting.WebHost.StartAsync(CancellationToken cancellationToken)
   2022-12-15T16:28:35.95+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Hosting.WebHostExtensions.RunAsync(IWebHost host, CancellationToken token, String startupMessage)
   2022-12-15T16:28:35.95+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Hosting.WebHostExtensions.RunAsync(IWebHost host, CancellationToken token, String startupMessage)
   2022-12-15T16:28:35.95+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Hosting.WebHostExtensions.RunAsync(IWebHost host, CancellationToken token)
   2022-12-15T16:28:35.95+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Hosting.WebHostExtensions.Run(IWebHost host)
   2022-12-15T16:28:35.95+0100 [APP/PROC/WEB/0] ERR at MySql.Program.Main(String[] args) in C:\Source\Repos\Samples\Connectors\src\MySql\Program.cs:line 34
   2022-12-15T16:28:35.99+0100 [APP/PROC/WEB/0] OUT Exit status 134
   2022-12-15T16:28:35.99+0100 [CELL/SSHD/0] OUT Exit status 0
   2022-12-15T16:28:42.74+0100 [CELL/0] OUT Cell 6390f008-4cf7-410d-b5dc-1b764ec60e18 stopping instance 15eb2243-765d-45fa-4976-a782
   2022-12-15T16:28:42.74+0100 [CELL/0] OUT Cell 6390f008-4cf7-410d-b5dc-1b764ec60e18 destroying container for instance 15eb2243-765d-45fa-4976-a782
   2022-12-15T16:28:42.75+0100 [API/0] OUT Process has crashed with type: "web"
   2022-12-15T16:28:42.76+0100 [API/0] OUT App instance exited with guid 35d615c4-2c60-4e45-ba9b-4ba3771035d5 payload: {"instance"=>"15eb2243-765d-45fa-4976-a782", "index"=>0, "cell_id"=>"6390f008-4cf7-410d-b5dc-1b764ec60e18", "reason"=>"CRASHED", "exit_description"=>"APP/PROC/WEB: Exited with status 134", "crash_count"=>2, "crash_timestamp"=>1671118122736320037, "version"=>"b888e317-f50c-40a1-8179-6291f9d564b9"}
   2022-12-15T16:28:42.78+0100 [CELL/0] OUT Cell 60c2fa85-ae1d-48b6-835b-6119378b61c3 creating container for instance 4fed1054-51c9-44c6-7247-5465
   2022-12-15T16:28:43.00+0100 [PROXY/0] OUT Exit status 137
   2022-12-15T16:28:43.19+0100 [CELL/0] OUT Cell 6390f008-4cf7-410d-b5dc-1b764ec60e18 successfully destroyed container for instance 15eb2243-765d-45fa-4976-a782
   2022-12-15T16:28:43.26+0100 [CELL/0] OUT Cell 60c2fa85-ae1d-48b6-835b-6119378b61c3 successfully created container for instance 4fed1054-51c9-44c6-7247-5465
   2022-12-15T16:28:44.15+0100 [CELL/0] OUT Downloading droplet...
   2022-12-15T16:28:44.73+0100 [CELL/0] OUT Downloaded droplet
   2022-12-15T16:28:44.83+0100 [CELL/0] OUT Starting health monitoring of container
   2022-12-15T16:28:47.56+0100 [APP/PROC/WEB/0] OUT info: Microsoft.AspNetCore.DataProtection.KeyManagement.XmlKeyManager[62]
   2022-12-15T16:28:47.56+0100 [APP/PROC/WEB/0] OUT User profile is available. Using '/home/vcap/app/.aspnet/DataProtection-Keys' as key repository; keys will not be encrypted at rest.
   2022-12-15T16:28:47.56+0100 [APP/PROC/WEB/0] OUT info: Steeltoe.Management.Endpoint.Trace.TraceDiagnosticObserver[0]
   2022-12-15T16:28:47.56+0100 [APP/PROC/WEB/0] OUT DiagnosticObserver HttpTraceDiagnosticObserver Subscribed to Microsoft.AspNetCore
   2022-12-15T16:28:47.56+0100 [APP/PROC/WEB/0] OUT info: Steeltoe.Management.Endpoint.Metrics.Observer.AspNetCoreHostingObserver[0]
   2022-12-15T16:28:47.56+0100 [APP/PROC/WEB/0] OUT DiagnosticObserver AspNetCoreHostingObserver Subscribed to Microsoft.AspNetCore
   2022-12-15T16:28:47.61+0100 [APP/PROC/WEB/0] OUT info: Microsoft.AspNetCore.DataProtection.KeyManagement.XmlKeyManager[58]
   2022-12-15T16:28:47.61+0100 [APP/PROC/WEB/0] OUT Creating key {1d833ddc-61e1-45ab-b552-fcd0e242989f} with creation date 2022-12-15 15:28:47Z, activation date 2022-12-15 15:28:47Z, and expiration date 2023-03-15 15:28:47Z.
   2022-12-15T16:28:47.62+0100 [APP/PROC/WEB/0] OUT warn: Microsoft.AspNetCore.DataProtection.KeyManagement.XmlKeyManager[35]
   2022-12-15T16:28:47.62+0100 [APP/PROC/WEB/0] OUT No XML encryptor configured. Key {1d833ddc-61e1-45ab-b552-fcd0e242989f} may be persisted to storage in unencrypted form.
   2022-12-15T16:28:47.63+0100 [APP/PROC/WEB/0] OUT info: Microsoft.AspNetCore.DataProtection.Repositories.FileSystemXmlRepository[39]
   2022-12-15T16:28:47.63+0100 [APP/PROC/WEB/0] OUT Writing data to file '/home/vcap/app/.aspnet/DataProtection-Keys/key-1d833ddc-61e1-45ab-b552-fcd0e242989f.xml'.
   2022-12-15T16:28:47.70+0100 [APP/PROC/WEB/0] OUT info: Steeltoe.Management.Endpoint.Trace.TraceDiagnosticObserver[0]
   2022-12-15T16:28:47.70+0100 [APP/PROC/WEB/0] OUT DiagnosticObserver HttpTraceDiagnosticObserver Disposed
   2022-12-15T16:28:47.70+0100 [APP/PROC/WEB/0] OUT info: Steeltoe.Management.Endpoint.Metrics.Observer.AspNetCoreHostingObserver[0]
   2022-12-15T16:28:47.70+0100 [APP/PROC/WEB/0] OUT DiagnosticObserver AspNetCoreHostingObserver Disposed
   2022-12-15T16:28:47.85+0100 [APP/PROC/WEB/0] OUT info: Steeltoe.Management.Endpoint.Metrics.Observer.AspNetCoreHostingObserver[0]
   2022-12-15T16:28:47.85+0100 [APP/PROC/WEB/0] OUT DiagnosticObserver AspNetCoreHostingObserver Disposed
   2022-12-15T16:28:47.85+0100 [APP/PROC/WEB/0] OUT info: Steeltoe.Management.Endpoint.Trace.TraceDiagnosticObserver[0]
   2022-12-15T16:28:47.85+0100 [APP/PROC/WEB/0] OUT DiagnosticObserver HttpTraceDiagnosticObserver Disposed
   2022-12-15T16:28:47.96+0100 [APP/PROC/WEB/0] ERR Unhandled exception. System.IO.IOException: Failed to bind to address http://0.0.0.0:8080: address already in use.
   2022-12-15T16:28:47.96+0100 [APP/PROC/WEB/0] ERR ---> Microsoft.AspNetCore.Connections.AddressInUseException: Address already in use
   2022-12-15T16:28:47.96+0100 [APP/PROC/WEB/0] ERR ---> System.Net.Sockets.SocketException (98): Address already in use
   2022-12-15T16:28:47.96+0100 [APP/PROC/WEB/0] ERR at System.Net.Sockets.Socket.UpdateStatusAfterSocketErrorAndThrowException(SocketError error, String callerName)
   2022-12-15T16:28:47.96+0100 [APP/PROC/WEB/0] ERR at System.Net.Sockets.Socket.DoBind(EndPoint endPointSnapshot, SocketAddress socketAddress)
   2022-12-15T16:28:47.96+0100 [APP/PROC/WEB/0] ERR at System.Net.Sockets.Socket.Bind(EndPoint localEP)
   2022-12-15T16:28:47.96+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.SocketTransportOptions.CreateDefaultBoundListenSocket(EndPoint endpoint)
   2022-12-15T16:28:47.96+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.SocketConnectionListener.Bind()
   2022-12-15T16:28:47.96+0100 [APP/PROC/WEB/0] ERR --- End of inner exception stack trace ---
   2022-12-15T16:28:47.96+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.SocketConnectionListener.Bind()
   2022-12-15T16:28:47.96+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.SocketTransportFactory.BindAsync(EndPoint endpoint, CancellationToken cancellationToken)
   2022-12-15T16:28:47.96+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Infrastructure.TransportManager.BindAsync(EndPoint endPoint, ConnectionDelegate connectionDelegate, EndpointConfig endpointConfig, CancellationToken cancellationToken)
   2022-12-15T16:28:47.96+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Core.KestrelServerImpl.<>c__DisplayClass30_0`1.<<StartAsync>g__OnBind|0>d.MoveNext()
   2022-12-15T16:28:47.96+0100 [APP/PROC/WEB/0] ERR --- End of stack trace from previous location ---
   2022-12-15T16:28:47.96+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Core.Internal.AddressBinder.BindEndpointAsync(ListenOptions endpoint, AddressBindContext context, CancellationToken cancellationToken)
   2022-12-15T16:28:47.96+0100 [APP/PROC/WEB/0] ERR --- End of inner exception stack trace ---
   2022-12-15T16:28:47.96+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Core.Internal.AddressBinder.BindEndpointAsync(ListenOptions endpoint, AddressBindContext context, CancellationToken cancellationToken)
   2022-12-15T16:28:47.96+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Core.ListenOptions.BindAsync(AddressBindContext context, CancellationToken cancellationToken)
   2022-12-15T16:28:47.96+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Core.Internal.AddressBinder.AddressesStrategy.BindAsync(AddressBindContext context, CancellationToken cancellationToken)
   2022-12-15T16:28:47.96+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Core.Internal.AddressBinder.BindAsync(IEnumerable`1 listenOptions, AddressBindContext context, CancellationToken cancellationToken)
   2022-12-15T16:28:47.96+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Core.KestrelServerImpl.BindAsync(CancellationToken cancellationToken)
   2022-12-15T16:28:47.96+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Core.KestrelServerImpl.StartAsync[TContext](IHttpApplication`1 application, CancellationToken cancellationToken)
   2022-12-15T16:28:47.96+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Hosting.WebHost.StartAsync(CancellationToken cancellationToken)
   2022-12-15T16:28:47.96+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Hosting.WebHostExtensions.RunAsync(IWebHost host, CancellationToken token, String startupMessage)
   2022-12-15T16:28:47.96+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Hosting.WebHostExtensions.RunAsync(IWebHost host, CancellationToken token, String startupMessage)
   2022-12-15T16:28:47.96+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Hosting.WebHostExtensions.RunAsync(IWebHost host, CancellationToken token)
   2022-12-15T16:28:47.96+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Hosting.WebHostExtensions.Run(IWebHost host)
   2022-12-15T16:28:47.96+0100 [APP/PROC/WEB/0] ERR at MySql.Program.Main(String[] args) in C:\Source\Repos\Samples\Connectors\src\MySql\Program.cs:line 34
   2022-12-15T16:28:48.03+0100 [APP/PROC/WEB/0] OUT Exit status 134
   2022-12-15T16:28:48.03+0100 [CELL/SSHD/0] OUT Exit status 0
   2022-12-15T16:28:55.16+0100 [CELL/0] OUT Cell 60c2fa85-ae1d-48b6-835b-6119378b61c3 stopping instance 4fed1054-51c9-44c6-7247-5465
   2022-12-15T16:28:55.16+0100 [CELL/0] OUT Cell 60c2fa85-ae1d-48b6-835b-6119378b61c3 destroying container for instance 4fed1054-51c9-44c6-7247-5465
   2022-12-15T16:28:55.17+0100 [API/0] OUT Process has crashed with type: "web"
   2022-12-15T16:28:55.18+0100 [API/0] OUT App instance exited with guid 35d615c4-2c60-4e45-ba9b-4ba3771035d5 payload: {"instance"=>"4fed1054-51c9-44c6-7247-5465", "index"=>0, "cell_id"=>"60c2fa85-ae1d-48b6-835b-6119378b61c3", "reason"=>"CRASHED", "exit_description"=>"APP/PROC/WEB: Exited with status 134", "crash_count"=>3, "crash_timestamp"=>1671118135160502660, "version"=>"b888e317-f50c-40a1-8179-6291f9d564b9"}
   2022-12-15T16:28:55.47+0100 [PROXY/0] OUT Exit status 137
   2022-12-15T16:28:55.69+0100 [CELL/0] OUT Cell 60c2fa85-ae1d-48b6-835b-6119378b61c3 successfully destroyed container for instance 4fed1054-51c9-44c6-7247-5465
   2022-12-15T16:29:40.54+0100 [CELL/0] OUT Cell 60c2fa85-ae1d-48b6-835b-6119378b61c3 creating container for instance baaa5ec8-b2b2-4614-4a64-dab7
   2022-12-15T16:29:41.00+0100 [CELL/0] OUT Cell 60c2fa85-ae1d-48b6-835b-6119378b61c3 successfully created container for instance baaa5ec8-b2b2-4614-4a64-dab7
   2022-12-15T16:29:41.57+0100 [CELL/0] OUT Downloading droplet...
   2022-12-15T16:29:42.10+0100 [CELL/0] OUT Downloaded droplet
   2022-12-15T16:29:42.20+0100 [CELL/0] OUT Starting health monitoring of container
   2022-12-15T16:29:44.50+0100 [APP/PROC/WEB/0] OUT info: Microsoft.AspNetCore.DataProtection.KeyManagement.XmlKeyManager[62]
   2022-12-15T16:29:44.50+0100 [APP/PROC/WEB/0] OUT User profile is available. Using '/home/vcap/app/.aspnet/DataProtection-Keys' as key repository; keys will not be encrypted at rest.
   2022-12-15T16:29:44.51+0100 [APP/PROC/WEB/0] OUT info: Steeltoe.Management.Endpoint.Trace.TraceDiagnosticObserver[0]
   2022-12-15T16:29:44.51+0100 [APP/PROC/WEB/0] OUT DiagnosticObserver HttpTraceDiagnosticObserver Subscribed to Microsoft.AspNetCore
   2022-12-15T16:29:44.51+0100 [APP/PROC/WEB/0] OUT info: Steeltoe.Management.Endpoint.Metrics.Observer.AspNetCoreHostingObserver[0]
   2022-12-15T16:29:44.51+0100 [APP/PROC/WEB/0] OUT DiagnosticObserver AspNetCoreHostingObserver Subscribed to Microsoft.AspNetCore
   2022-12-15T16:29:44.55+0100 [APP/PROC/WEB/0] OUT info: Microsoft.AspNetCore.DataProtection.KeyManagement.XmlKeyManager[58]
   2022-12-15T16:29:44.55+0100 [APP/PROC/WEB/0] OUT Creating key {dc1046a3-3279-4ee9-ab2a-595a46c7aed7} with creation date 2022-12-15 15:29:44Z, activation date 2022-12-15 15:29:44Z, and expiration date 2023-03-15 15:29:44Z.
   2022-12-15T16:29:44.56+0100 [APP/PROC/WEB/0] OUT warn: Microsoft.AspNetCore.DataProtection.KeyManagement.XmlKeyManager[35]
   2022-12-15T16:29:44.56+0100 [APP/PROC/WEB/0] OUT No XML encryptor configured. Key {dc1046a3-3279-4ee9-ab2a-595a46c7aed7} may be persisted to storage in unencrypted form.
   2022-12-15T16:29:44.56+0100 [APP/PROC/WEB/0] OUT info: Microsoft.AspNetCore.DataProtection.Repositories.FileSystemXmlRepository[39]
   2022-12-15T16:29:44.56+0100 [APP/PROC/WEB/0] OUT Writing data to file '/home/vcap/app/.aspnet/DataProtection-Keys/key-dc1046a3-3279-4ee9-ab2a-595a46c7aed7.xml'.
   2022-12-15T16:29:44.62+0100 [APP/PROC/WEB/0] OUT info: Steeltoe.Management.Endpoint.Trace.TraceDiagnosticObserver[0]
   2022-12-15T16:29:44.62+0100 [APP/PROC/WEB/0] OUT DiagnosticObserver HttpTraceDiagnosticObserver Disposed
   2022-12-15T16:29:44.62+0100 [APP/PROC/WEB/0] OUT info: Steeltoe.Management.Endpoint.Metrics.Observer.AspNetCoreHostingObserver[0]
   2022-12-15T16:29:44.62+0100 [APP/PROC/WEB/0] OUT DiagnosticObserver AspNetCoreHostingObserver Disposed
   2022-12-15T16:29:44.65+0100 [APP/PROC/WEB/0] OUT info: Steeltoe.Management.Endpoint.Metrics.Observer.AspNetCoreHostingObserver[0]
   2022-12-15T16:29:44.65+0100 [APP/PROC/WEB/0] OUT DiagnosticObserver AspNetCoreHostingObserver Disposed
   2022-12-15T16:29:44.65+0100 [APP/PROC/WEB/0] OUT info: Steeltoe.Management.Endpoint.Trace.TraceDiagnosticObserver[0]
   2022-12-15T16:29:44.65+0100 [APP/PROC/WEB/0] OUT DiagnosticObserver HttpTraceDiagnosticObserver Disposed
   2022-12-15T16:29:44.66+0100 [APP/PROC/WEB/0] ERR Unhandled exception. System.IO.IOException: Failed to bind to address http://0.0.0.0:8080: address already in use.
   2022-12-15T16:29:44.66+0100 [APP/PROC/WEB/0] ERR ---> Microsoft.AspNetCore.Connections.AddressInUseException: Address already in use
   2022-12-15T16:29:44.66+0100 [APP/PROC/WEB/0] ERR ---> System.Net.Sockets.SocketException (98): Address already in use
   2022-12-15T16:29:44.66+0100 [APP/PROC/WEB/0] ERR at System.Net.Sockets.Socket.UpdateStatusAfterSocketErrorAndThrowException(SocketError error, String callerName)
   2022-12-15T16:29:44.66+0100 [APP/PROC/WEB/0] ERR at System.Net.Sockets.Socket.DoBind(EndPoint endPointSnapshot, SocketAddress socketAddress)
   2022-12-15T16:29:44.66+0100 [APP/PROC/WEB/0] ERR at System.Net.Sockets.Socket.Bind(EndPoint localEP)
   2022-12-15T16:29:44.66+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.SocketTransportOptions.CreateDefaultBoundListenSocket(EndPoint endpoint)
   2022-12-15T16:29:44.66+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.SocketConnectionListener.Bind()
   2022-12-15T16:29:44.66+0100 [APP/PROC/WEB/0] ERR --- End of inner exception stack trace ---
   2022-12-15T16:29:44.66+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.SocketConnectionListener.Bind()
   2022-12-15T16:29:44.66+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.SocketTransportFactory.BindAsync(EndPoint endpoint, CancellationToken cancellationToken)
   2022-12-15T16:29:44.66+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Infrastructure.TransportManager.BindAsync(EndPoint endPoint, ConnectionDelegate connectionDelegate, EndpointConfig endpointConfig, CancellationToken cancellationToken)
   2022-12-15T16:29:44.66+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Core.KestrelServerImpl.<>c__DisplayClass30_0`1.<<StartAsync>g__OnBind|0>d.MoveNext()
   2022-12-15T16:29:44.66+0100 [APP/PROC/WEB/0] ERR --- End of stack trace from previous location ---
   2022-12-15T16:29:44.66+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Core.Internal.AddressBinder.BindEndpointAsync(ListenOptions endpoint, AddressBindContext context, CancellationToken cancellationToken)
   2022-12-15T16:29:44.66+0100 [APP/PROC/WEB/0] ERR --- End of inner exception stack trace ---
   2022-12-15T16:29:44.66+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Core.Internal.AddressBinder.BindEndpointAsync(ListenOptions endpoint, AddressBindContext context, CancellationToken cancellationToken)
   2022-12-15T16:29:44.66+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Core.ListenOptions.BindAsync(AddressBindContext context, CancellationToken cancellationToken)
   2022-12-15T16:29:44.66+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Core.Internal.AddressBinder.AddressesStrategy.BindAsync(AddressBindContext context, CancellationToken cancellationToken)
   2022-12-15T16:29:44.66+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Core.Internal.AddressBinder.BindAsync(IEnumerable`1 listenOptions, AddressBindContext context, CancellationToken cancellationToken)
   2022-12-15T16:29:44.66+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Core.KestrelServerImpl.BindAsync(CancellationToken cancellationToken)
   2022-12-15T16:29:44.66+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Core.KestrelServerImpl.StartAsync[TContext](IHttpApplication`1 application, CancellationToken cancellationToken)
   2022-12-15T16:29:44.66+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Hosting.WebHost.StartAsync(CancellationToken cancellationToken)
   2022-12-15T16:29:44.66+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Hosting.WebHostExtensions.RunAsync(IWebHost host, CancellationToken token, String startupMessage)
   2022-12-15T16:29:44.66+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Hosting.WebHostExtensions.RunAsync(IWebHost host, CancellationToken token, String startupMessage)
   2022-12-15T16:29:44.66+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Hosting.WebHostExtensions.RunAsync(IWebHost host, CancellationToken token)
   2022-12-15T16:29:44.66+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Hosting.WebHostExtensions.Run(IWebHost host)
   2022-12-15T16:29:44.66+0100 [APP/PROC/WEB/0] ERR at MySql.Program.Main(String[] args) in C:\Source\Repos\Samples\Connectors\src\MySql\Program.cs:line 34
   2022-12-15T16:29:44.69+0100 [APP/PROC/WEB/0] OUT Exit status 134
   2022-12-15T16:29:44.69+0100 [CELL/SSHD/0] OUT Exit status 0
   2022-12-15T16:29:51.50+0100 [CELL/0] OUT Cell 60c2fa85-ae1d-48b6-835b-6119378b61c3 stopping instance baaa5ec8-b2b2-4614-4a64-dab7
   2022-12-15T16:29:51.50+0100 [CELL/0] OUT Cell 60c2fa85-ae1d-48b6-835b-6119378b61c3 destroying container for instance baaa5ec8-b2b2-4614-4a64-dab7
   2022-12-15T16:29:51.51+0100 [API/0] OUT Process has crashed with type: "web"
   2022-12-15T16:29:51.52+0100 [API/0] OUT App instance exited with guid 35d615c4-2c60-4e45-ba9b-4ba3771035d5 payload: {"instance"=>"baaa5ec8-b2b2-4614-4a64-dab7", "index"=>0, "cell_id"=>"60c2fa85-ae1d-48b6-835b-6119378b61c3", "reason"=>"CRASHED", "exit_description"=>"APP/PROC/WEB: Exited with status 134", "crash_count"=>4, "crash_timestamp"=>1671118191500538150, "version"=>"b888e317-f50c-40a1-8179-6291f9d564b9"}
   2022-12-15T16:29:51.76+0100 [PROXY/0] OUT Exit status 137
   2022-12-15T16:29:51.95+0100 [CELL/0] OUT Cell 60c2fa85-ae1d-48b6-835b-6119378b61c3 successfully destroyed container for instance baaa5ec8-b2b2-4614-4a64-dab7
   2022-12-15T16:31:10.63+0100 [CELL/0] OUT Cell 60c2fa85-ae1d-48b6-835b-6119378b61c3 creating container for instance 47e93887-76ad-4c23-41f3-f75d
   2022-12-15T16:31:11.12+0100 [CELL/0] OUT Cell 60c2fa85-ae1d-48b6-835b-6119378b61c3 successfully created container for instance 47e93887-76ad-4c23-41f3-f75d
   2022-12-15T16:31:11.90+0100 [CELL/0] OUT Downloading droplet...
   2022-12-15T16:31:12.43+0100 [CELL/0] OUT Downloaded droplet
   2022-12-15T16:31:12.53+0100 [CELL/0] OUT Starting health monitoring of container
   2022-12-15T16:31:14.77+0100 [APP/PROC/WEB/0] OUT info: Microsoft.AspNetCore.DataProtection.KeyManagement.XmlKeyManager[62]
   2022-12-15T16:31:14.77+0100 [APP/PROC/WEB/0] OUT User profile is available. Using '/home/vcap/app/.aspnet/DataProtection-Keys' as key repository; keys will not be encrypted at rest.
   2022-12-15T16:31:14.77+0100 [APP/PROC/WEB/0] OUT info: Steeltoe.Management.Endpoint.Trace.TraceDiagnosticObserver[0]
   2022-12-15T16:31:14.77+0100 [APP/PROC/WEB/0] OUT DiagnosticObserver HttpTraceDiagnosticObserver Subscribed to Microsoft.AspNetCore
   2022-12-15T16:31:14.77+0100 [APP/PROC/WEB/0] OUT info: Steeltoe.Management.Endpoint.Metrics.Observer.AspNetCoreHostingObserver[0]
   2022-12-15T16:31:14.77+0100 [APP/PROC/WEB/0] OUT DiagnosticObserver AspNetCoreHostingObserver Subscribed to Microsoft.AspNetCore
   2022-12-15T16:31:14.82+0100 [APP/PROC/WEB/0] OUT info: Microsoft.AspNetCore.DataProtection.KeyManagement.XmlKeyManager[58]
   2022-12-15T16:31:14.82+0100 [APP/PROC/WEB/0] OUT Creating key {0d4cdbd9-63f4-48b6-8cfa-ef489bffdc4f} with creation date 2022-12-15 15:31:14Z, activation date 2022-12-15 15:31:14Z, and expiration date 2023-03-15 15:31:14Z.
   2022-12-15T16:31:14.83+0100 [APP/PROC/WEB/0] OUT warn: Microsoft.AspNetCore.DataProtection.KeyManagement.XmlKeyManager[35]
   2022-12-15T16:31:14.83+0100 [APP/PROC/WEB/0] OUT No XML encryptor configured. Key {0d4cdbd9-63f4-48b6-8cfa-ef489bffdc4f} may be persisted to storage in unencrypted form.
   2022-12-15T16:31:14.83+0100 [APP/PROC/WEB/0] OUT info: Microsoft.AspNetCore.DataProtection.Repositories.FileSystemXmlRepository[39]
   2022-12-15T16:31:14.83+0100 [APP/PROC/WEB/0] OUT Writing data to file '/home/vcap/app/.aspnet/DataProtection-Keys/key-0d4cdbd9-63f4-48b6-8cfa-ef489bffdc4f.xml'.
   2022-12-15T16:31:14.88+0100 [APP/PROC/WEB/0] OUT info: Steeltoe.Management.Endpoint.Trace.TraceDiagnosticObserver[0]
   2022-12-15T16:31:14.88+0100 [APP/PROC/WEB/0] OUT DiagnosticObserver HttpTraceDiagnosticObserver Disposed
   2022-12-15T16:31:14.88+0100 [APP/PROC/WEB/0] OUT info: Steeltoe.Management.Endpoint.Metrics.Observer.AspNetCoreHostingObserver[0]
   2022-12-15T16:31:14.88+0100 [APP/PROC/WEB/0] OUT DiagnosticObserver AspNetCoreHostingObserver Disposed
   2022-12-15T16:31:14.91+0100 [APP/PROC/WEB/0] OUT info: Steeltoe.Management.Endpoint.Metrics.Observer.AspNetCoreHostingObserver[0]
   2022-12-15T16:31:14.91+0100 [APP/PROC/WEB/0] OUT DiagnosticObserver AspNetCoreHostingObserver Disposed
   2022-12-15T16:31:14.92+0100 [APP/PROC/WEB/0] OUT info: Steeltoe.Management.Endpoint.Trace.TraceDiagnosticObserver[0]
   2022-12-15T16:31:14.92+0100 [APP/PROC/WEB/0] OUT DiagnosticObserver HttpTraceDiagnosticObserver Disposed
   2022-12-15T16:31:14.93+0100 [APP/PROC/WEB/0] ERR Unhandled exception. System.IO.IOException: Failed to bind to address http://0.0.0.0:8080: address already in use.
   2022-12-15T16:31:14.93+0100 [APP/PROC/WEB/0] ERR ---> Microsoft.AspNetCore.Connections.AddressInUseException: Address already in use
   2022-12-15T16:31:14.93+0100 [APP/PROC/WEB/0] ERR ---> System.Net.Sockets.SocketException (98): Address already in use
   2022-12-15T16:31:14.93+0100 [APP/PROC/WEB/0] ERR at System.Net.Sockets.Socket.UpdateStatusAfterSocketErrorAndThrowException(SocketError error, String callerName)
   2022-12-15T16:31:14.93+0100 [APP/PROC/WEB/0] ERR at System.Net.Sockets.Socket.DoBind(EndPoint endPointSnapshot, SocketAddress socketAddress)
   2022-12-15T16:31:14.93+0100 [APP/PROC/WEB/0] ERR at System.Net.Sockets.Socket.Bind(EndPoint localEP)
   2022-12-15T16:31:14.93+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.SocketTransportOptions.CreateDefaultBoundListenSocket(EndPoint endpoint)
   2022-12-15T16:31:14.93+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.SocketConnectionListener.Bind()
   2022-12-15T16:31:14.93+0100 [APP/PROC/WEB/0] ERR --- End of inner exception stack trace ---
   2022-12-15T16:31:14.93+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.SocketConnectionListener.Bind()
   2022-12-15T16:31:14.93+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.SocketTransportFactory.BindAsync(EndPoint endpoint, CancellationToken cancellationToken)
   2022-12-15T16:31:14.93+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Infrastructure.TransportManager.BindAsync(EndPoint endPoint, ConnectionDelegate connectionDelegate, EndpointConfig endpointConfig, CancellationToken cancellationToken)
   2022-12-15T16:31:14.93+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Core.KestrelServerImpl.<>c__DisplayClass30_0`1.<<StartAsync>g__OnBind|0>d.MoveNext()
   2022-12-15T16:31:14.93+0100 [APP/PROC/WEB/0] ERR --- End of stack trace from previous location ---
   2022-12-15T16:31:14.93+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Core.Internal.AddressBinder.BindEndpointAsync(ListenOptions endpoint, AddressBindContext context, CancellationToken cancellationToken)
   2022-12-15T16:31:14.93+0100 [APP/PROC/WEB/0] ERR --- End of inner exception stack trace ---
   2022-12-15T16:31:14.93+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Core.Internal.AddressBinder.BindEndpointAsync(ListenOptions endpoint, AddressBindContext context, CancellationToken cancellationToken)
   2022-12-15T16:31:14.93+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Core.ListenOptions.BindAsync(AddressBindContext context, CancellationToken cancellationToken)
   2022-12-15T16:31:14.93+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Core.Internal.AddressBinder.AddressesStrategy.BindAsync(AddressBindContext context, CancellationToken cancellationToken)
   2022-12-15T16:31:14.93+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Core.Internal.AddressBinder.BindAsync(IEnumerable`1 listenOptions, AddressBindContext context, CancellationToken cancellationToken)
   2022-12-15T16:31:14.93+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Core.KestrelServerImpl.BindAsync(CancellationToken cancellationToken)
   2022-12-15T16:31:14.93+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Core.KestrelServerImpl.StartAsync[TContext](IHttpApplication`1 application, CancellationToken cancellationToken)
   2022-12-15T16:31:14.93+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Hosting.WebHost.StartAsync(CancellationToken cancellationToken)
   2022-12-15T16:31:14.93+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Hosting.WebHostExtensions.RunAsync(IWebHost host, CancellationToken token, String startupMessage)
   2022-12-15T16:31:14.93+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Hosting.WebHostExtensions.RunAsync(IWebHost host, CancellationToken token, String startupMessage)
   2022-12-15T16:31:14.93+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Hosting.WebHostExtensions.RunAsync(IWebHost host, CancellationToken token)
   2022-12-15T16:31:14.93+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Hosting.WebHostExtensions.Run(IWebHost host)
   2022-12-15T16:31:14.93+0100 [APP/PROC/WEB/0] ERR at MySql.Program.Main(String[] args) in C:\Source\Repos\Samples\Connectors\src\MySql\Program.cs:line 34
   2022-12-15T16:31:14.96+0100 [APP/PROC/WEB/0] OUT Exit status 134
   2022-12-15T16:31:14.96+0100 [CELL/SSHD/0] OUT Exit status 0
   2022-12-15T16:31:22.19+0100 [CELL/0] OUT Cell 60c2fa85-ae1d-48b6-835b-6119378b61c3 stopping instance 47e93887-76ad-4c23-41f3-f75d
   2022-12-15T16:31:22.19+0100 [CELL/0] OUT Cell 60c2fa85-ae1d-48b6-835b-6119378b61c3 destroying container for instance 47e93887-76ad-4c23-41f3-f75d
   2022-12-15T16:31:22.21+0100 [API/0] OUT Process has crashed with type: "web"
   2022-12-15T16:31:22.22+0100 [API/0] OUT App instance exited with guid 35d615c4-2c60-4e45-ba9b-4ba3771035d5 payload: {"instance"=>"47e93887-76ad-4c23-41f3-f75d", "index"=>0, "cell_id"=>"60c2fa85-ae1d-48b6-835b-6119378b61c3", "reason"=>"CRASHED", "exit_description"=>"APP/PROC/WEB: Exited with status 134", "crash_count"=>5, "crash_timestamp"=>1671118282196165079, "version"=>"b888e317-f50c-40a1-8179-6291f9d564b9"}
   2022-12-15T16:31:22.50+0100 [PROXY/0] OUT Exit status 137
   2022-12-15T16:31:22.69+0100 [CELL/0] OUT Cell 60c2fa85-ae1d-48b6-835b-6119378b61c3 successfully destroyed container for instance 47e93887-76ad-4c23-41f3-f75d
   2022-12-15T16:33:40.77+0100 [CELL/0] OUT Cell 60c2fa85-ae1d-48b6-835b-6119378b61c3 creating container for instance eb190a65-3af8-428b-4f78-64ce
   2022-12-15T16:33:41.28+0100 [CELL/0] OUT Cell 60c2fa85-ae1d-48b6-835b-6119378b61c3 successfully created container for instance eb190a65-3af8-428b-4f78-64ce
   2022-12-15T16:33:42.11+0100 [CELL/0] OUT Downloading droplet...
   2022-12-15T16:33:42.66+0100 [CELL/0] OUT Downloaded droplet
   2022-12-15T16:33:42.76+0100 [CELL/0] OUT Starting health monitoring of container
   2022-12-15T16:33:45.12+0100 [APP/PROC/WEB/0] OUT info: Microsoft.AspNetCore.DataProtection.KeyManagement.XmlKeyManager[62]
   2022-12-15T16:33:45.12+0100 [APP/PROC/WEB/0] OUT User profile is available. Using '/home/vcap/app/.aspnet/DataProtection-Keys' as key repository; keys will not be encrypted at rest.
   2022-12-15T16:33:45.12+0100 [APP/PROC/WEB/0] OUT info: Steeltoe.Management.Endpoint.Trace.TraceDiagnosticObserver[0]
   2022-12-15T16:33:45.12+0100 [APP/PROC/WEB/0] OUT DiagnosticObserver HttpTraceDiagnosticObserver Subscribed to Microsoft.AspNetCore
   2022-12-15T16:33:45.12+0100 [APP/PROC/WEB/0] OUT info: Steeltoe.Management.Endpoint.Metrics.Observer.AspNetCoreHostingObserver[0]
   2022-12-15T16:33:45.12+0100 [APP/PROC/WEB/0] OUT DiagnosticObserver AspNetCoreHostingObserver Subscribed to Microsoft.AspNetCore
   2022-12-15T16:33:45.17+0100 [APP/PROC/WEB/0] OUT info: Microsoft.AspNetCore.DataProtection.KeyManagement.XmlKeyManager[58]
   2022-12-15T16:33:45.17+0100 [APP/PROC/WEB/0] OUT Creating key {9b644f60-4c3d-4f2a-a7bd-fe0f3aa00138} with creation date 2022-12-15 15:33:45Z, activation date 2022-12-15 15:33:45Z, and expiration date 2023-03-15 15:33:45Z.
   2022-12-15T16:33:45.18+0100 [APP/PROC/WEB/0] OUT warn: Microsoft.AspNetCore.DataProtection.KeyManagement.XmlKeyManager[35]
   2022-12-15T16:33:45.18+0100 [APP/PROC/WEB/0] OUT No XML encryptor configured. Key {9b644f60-4c3d-4f2a-a7bd-fe0f3aa00138} may be persisted to storage in unencrypted form.
   2022-12-15T16:33:45.18+0100 [APP/PROC/WEB/0] OUT info: Microsoft.AspNetCore.DataProtection.Repositories.FileSystemXmlRepository[39]
   2022-12-15T16:33:45.18+0100 [APP/PROC/WEB/0] OUT Writing data to file '/home/vcap/app/.aspnet/DataProtection-Keys/key-9b644f60-4c3d-4f2a-a7bd-fe0f3aa00138.xml'.
   2022-12-15T16:33:45.24+0100 [APP/PROC/WEB/0] OUT info: Steeltoe.Management.Endpoint.Trace.TraceDiagnosticObserver[0]
   2022-12-15T16:33:45.24+0100 [APP/PROC/WEB/0] OUT DiagnosticObserver HttpTraceDiagnosticObserver Disposed
   2022-12-15T16:33:45.24+0100 [APP/PROC/WEB/0] OUT info: Steeltoe.Management.Endpoint.Metrics.Observer.AspNetCoreHostingObserver[0]
   2022-12-15T16:33:45.24+0100 [APP/PROC/WEB/0] OUT DiagnosticObserver AspNetCoreHostingObserver Disposed
   2022-12-15T16:33:45.28+0100 [APP/PROC/WEB/0] OUT info: Steeltoe.Management.Endpoint.Metrics.Observer.AspNetCoreHostingObserver[0]
   2022-12-15T16:33:45.28+0100 [APP/PROC/WEB/0] OUT DiagnosticObserver AspNetCoreHostingObserver Disposed
   2022-12-15T16:33:45.28+0100 [APP/PROC/WEB/0] OUT info: Steeltoe.Management.Endpoint.Trace.TraceDiagnosticObserver[0]
   2022-12-15T16:33:45.28+0100 [APP/PROC/WEB/0] OUT DiagnosticObserver HttpTraceDiagnosticObserver Disposed
   2022-12-15T16:33:45.29+0100 [APP/PROC/WEB/0] ERR Unhandled exception. System.IO.IOException: Failed to bind to address http://0.0.0.0:8080: address already in use.
   2022-12-15T16:33:45.29+0100 [APP/PROC/WEB/0] ERR ---> Microsoft.AspNetCore.Connections.AddressInUseException: Address already in use
   2022-12-15T16:33:45.29+0100 [APP/PROC/WEB/0] ERR ---> System.Net.Sockets.SocketException (98): Address already in use
   2022-12-15T16:33:45.29+0100 [APP/PROC/WEB/0] ERR at System.Net.Sockets.Socket.UpdateStatusAfterSocketErrorAndThrowException(SocketError error, String callerName)
   2022-12-15T16:33:45.29+0100 [APP/PROC/WEB/0] ERR at System.Net.Sockets.Socket.DoBind(EndPoint endPointSnapshot, SocketAddress socketAddress)
   2022-12-15T16:33:45.29+0100 [APP/PROC/WEB/0] ERR at System.Net.Sockets.Socket.Bind(EndPoint localEP)
   2022-12-15T16:33:45.29+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.SocketTransportOptions.CreateDefaultBoundListenSocket(EndPoint endpoint)
   2022-12-15T16:33:45.29+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.SocketConnectionListener.Bind()
   2022-12-15T16:33:45.29+0100 [APP/PROC/WEB/0] ERR --- End of inner exception stack trace ---
   2022-12-15T16:33:45.29+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.SocketConnectionListener.Bind()
   2022-12-15T16:33:45.29+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.SocketTransportFactory.BindAsync(EndPoint endpoint, CancellationToken cancellationToken)
   2022-12-15T16:33:45.29+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Infrastructure.TransportManager.BindAsync(EndPoint endPoint, ConnectionDelegate connectionDelegate, EndpointConfig endpointConfig, CancellationToken cancellationToken)
   2022-12-15T16:33:45.29+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Core.KestrelServerImpl.<>c__DisplayClass30_0`1.<<StartAsync>g__OnBind|0>d.MoveNext()
   2022-12-15T16:33:45.29+0100 [APP/PROC/WEB/0] ERR --- End of stack trace from previous location ---
   2022-12-15T16:33:45.29+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Core.Internal.AddressBinder.BindEndpointAsync(ListenOptions endpoint, AddressBindContext context, CancellationToken cancellationToken)
   2022-12-15T16:33:45.29+0100 [APP/PROC/WEB/0] ERR --- End of inner exception stack trace ---
   2022-12-15T16:33:45.29+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Core.Internal.AddressBinder.BindEndpointAsync(ListenOptions endpoint, AddressBindContext context, CancellationToken cancellationToken)
   2022-12-15T16:33:45.29+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Core.ListenOptions.BindAsync(AddressBindContext context, CancellationToken cancellationToken)
   2022-12-15T16:33:45.29+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Core.Internal.AddressBinder.AddressesStrategy.BindAsync(AddressBindContext context, CancellationToken cancellationToken)
   2022-12-15T16:33:45.29+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Core.Internal.AddressBinder.BindAsync(IEnumerable`1 listenOptions, AddressBindContext context, CancellationToken cancellationToken)
   2022-12-15T16:33:45.29+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Core.KestrelServerImpl.BindAsync(CancellationToken cancellationToken)
   2022-12-15T16:33:45.29+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Core.KestrelServerImpl.StartAsync[TContext](IHttpApplication`1 application, CancellationToken cancellationToken)
   2022-12-15T16:33:45.29+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Hosting.WebHost.StartAsync(CancellationToken cancellationToken)
   2022-12-15T16:33:45.29+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Hosting.WebHostExtensions.RunAsync(IWebHost host, CancellationToken token, String startupMessage)
   2022-12-15T16:33:45.29+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Hosting.WebHostExtensions.RunAsync(IWebHost host, CancellationToken token, String startupMessage)
   2022-12-15T16:33:45.29+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Hosting.WebHostExtensions.RunAsync(IWebHost host, CancellationToken token)
   2022-12-15T16:33:45.29+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Hosting.WebHostExtensions.Run(IWebHost host)
   2022-12-15T16:33:45.29+0100 [APP/PROC/WEB/0] ERR at MySql.Program.Main(String[] args) in C:\Source\Repos\Samples\Connectors\src\MySql\Program.cs:line 34
   2022-12-15T16:33:45.33+0100 [APP/PROC/WEB/0] OUT Exit status 134
   2022-12-15T16:33:45.33+0100 [CELL/SSHD/0] OUT Exit status 0
   2022-12-15T16:33:52.59+0100 [CELL/0] OUT Cell 60c2fa85-ae1d-48b6-835b-6119378b61c3 stopping instance eb190a65-3af8-428b-4f78-64ce
   2022-12-15T16:33:52.59+0100 [CELL/0] OUT Cell 60c2fa85-ae1d-48b6-835b-6119378b61c3 destroying container for instance eb190a65-3af8-428b-4f78-64ce
   2022-12-15T16:33:52.60+0100 [API/0] OUT Process has crashed with type: "web"
   2022-12-15T16:33:52.61+0100 [API/0] OUT App instance exited with guid 35d615c4-2c60-4e45-ba9b-4ba3771035d5 payload: {"instance"=>"eb190a65-3af8-428b-4f78-64ce", "index"=>0, "cell_id"=>"60c2fa85-ae1d-48b6-835b-6119378b61c3", "reason"=>"CRASHED", "exit_description"=>"APP/PROC/WEB: Exited with status 134", "crash_count"=>6, "crash_timestamp"=>1671118432588864299, "version"=>"b888e317-f50c-40a1-8179-6291f9d564b9"}
   2022-12-15T16:33:52.88+0100 [PROXY/0] OUT Exit status 137
   2022-12-15T16:33:53.07+0100 [CELL/0] OUT Cell 60c2fa85-ae1d-48b6-835b-6119378b61c3 successfully destroyed container for instance eb190a65-3af8-428b-4f78-64ce
   2022-12-15T16:35:10.25+0100 [API/0] OUT Applied manifest to app with guid 35d615c4-2c60-4e45-ba9b-4ba3771035d5 (---
   2022-12-15T16:35:10.26+0100 [API/0] OUT applications:
   2022-12-15T16:35:10.26+0100 [API/0] OUT - name: mysql-connector
   2022-12-15T16:35:10.26+0100 [API/0] OUT path: C:\Source\Repos\Samples\Connectors\src\MySql\bin\Debug\net6.0\linux-x64\publish
   2022-12-15T16:35:10.26+0100 [API/0] OUT memory: 256M
   2022-12-15T16:35:10.26+0100 [API/0] OUT random-route: true
   2022-12-15T16:35:10.26+0100 [API/0] OUT buildpacks:
   2022-12-15T16:35:10.26+0100 [API/0] OUT - dotnet_core_buildpack
   2022-12-15T16:35:10.26+0100 [API/0] OUT env: "[PRIVATE DATA HIDDEN]"
   2022-12-15T16:35:10.26+0100 [API/0] OUT services:
   2022-12-15T16:35:10.26+0100 [API/0] OUT - myMySqlService
   2022-12-15T16:35:10.27+0100 [API/0] OUT )
   2022-12-15T16:35:15.23+0100 [API/0] OUT Scaling process: "web"
   2022-12-15T16:35:15.26+0100 [API/0] OUT Updated app with guid 35d615c4-2c60-4e45-ba9b-4ba3771035d5 ({"lifecycle"=>{"data"=>{"buildpacks"=>["dotnet_core_buildpack"]}}})
   2022-12-15T16:35:15.28+0100 [API/0] OUT Updated app with guid 35d615c4-2c60-4e45-ba9b-4ba3771035d5 ({"environment_variables"=>"[PRIVATE DATA HIDDEN]"})
   2022-12-15T16:35:19.86+0100 [API/0] OUT Uploading app package for app with guid 35d615c4-2c60-4e45-ba9b-4ba3771035d5
   2022-12-15T16:35:35.99+0100 [API/0] OUT Creating build for app with guid 35d615c4-2c60-4e45-ba9b-4ba3771035d5
   2022-12-15T16:35:36.17+0100 [STG/0] OUT Downloading dotnet_core_buildpack...
   2022-12-15T16:35:36.17+0100 [STG/0] OUT Downloaded dotnet_core_buildpack
   2022-12-15T16:35:36.18+0100 [STG/0] OUT Cell 60c2fa85-ae1d-48b6-835b-6119378b61c3 creating container for instance 8d530b6f-2e72-44d3-ac0d-096372f13c58
   2022-12-15T16:35:36.65+0100 [STG/0] OUT Cell 60c2fa85-ae1d-48b6-835b-6119378b61c3 successfully created container for instance 8d530b6f-2e72-44d3-ac0d-096372f13c58
   2022-12-15T16:35:37.58+0100 [STG/0] OUT Downloading app package...
   2022-12-15T16:35:37.58+0100 [STG/0] OUT Downloading build artifacts cache...
   2022-12-15T16:35:37.60+0100 [STG/0] OUT Downloaded build artifacts cache (224B)
   2022-12-15T16:35:40.09+0100 [STG/0] OUT Downloaded app package (49.3M)
   2022-12-15T16:35:40.19+0100 [STG/0] OUT -----> Dotnet-Core Buildpack version 2.4.0
   2022-12-15T16:35:40.19+0100 [STG/0] OUT -----> Supplying Dotnet Core
   2022-12-15T16:35:40.54+0100 [STG/0] OUT -----> Installing libunwind 1.6.2
   2022-12-15T16:35:40.54+0100 [STG/0] OUT Copy [/tmp/buildpacks/dbbad9103217cabb7eb0c005fa2f6afa/dependencies/876758bfae501dbf08bf2e285efb7917/libunwind_1.6.2_linux_noarch_cflinuxfs3_61087b90.tgz]
   2022-12-15T16:35:40.62+0100 [STG/0] OUT -----> Installing libgdiplus 6.1
   2022-12-15T16:35:40.62+0100 [STG/0] OUT Copy [/tmp/buildpacks/dbbad9103217cabb7eb0c005fa2f6afa/dependencies/5a1881fd4b0cfcde65b6c270bb71d20e/libgdiplus_6.1_linux_noarch_cflinuxfs3_bb66aa5a.tgz]
   2022-12-15T16:35:40.78+0100 [STG/0] OUT **WARNING** SDK 6.0.300 in global.json is not available
   2022-12-15T16:35:40.78+0100 [STG/0] OUT falling back to latest version in version line
   2022-12-15T16:35:40.78+0100 [STG/0] OUT -----> Installing dotnet-sdk 6.0.302
   2022-12-15T16:35:40.78+0100 [STG/0] OUT Copy [/tmp/buildpacks/dbbad9103217cabb7eb0c005fa2f6afa/dependencies/bc015df95087ca1b3cba3e40871b6ad4/dotnet-sdk_6.0.302_linux_x64_any-stack_c26c9fc2.tar.xz]
   2022-12-15T16:35:54.36+0100 [STG/0] OUT -----> Installing dotnet-runtime 6.0.7
   2022-12-15T16:35:54.36+0100 [STG/0] OUT Copy [/tmp/buildpacks/dbbad9103217cabb7eb0c005fa2f6afa/dependencies/2186d8aa27a597a1bbd8d95bc8dd632a/dotnet-runtime_6.0.7_linux_x64_any-stack_4c3a31a3.tar.xz]
   2022-12-15T16:35:58.13+0100 [STG/0] OUT -----> Finalizing Dotnet Core
   2022-12-15T16:35:58.13+0100 [STG/0] OUT -----> Cleaning staging area
   2022-12-15T16:35:58.13+0100 [STG/0] OUT Removing dotnet-sdk
   2022-12-15T16:36:09.73+0100 [STG/0] OUT Exit status 0
   2022-12-15T16:36:09.73+0100 [STG/0] OUT Uploading droplet, build artifacts cache...
   2022-12-15T16:36:09.73+0100 [STG/0] OUT Uploading droplet...
   2022-12-15T16:36:09.73+0100 [STG/0] OUT Uploading build artifacts cache...
   2022-12-15T16:36:09.77+0100 [STG/0] OUT Uploaded build artifacts cache (226B)
   2022-12-15T16:36:10.72+0100 [API/0] OUT Creating droplet for app with guid 35d615c4-2c60-4e45-ba9b-4ba3771035d5
   2022-12-15T16:36:11.87+0100 [STG/0] OUT Uploaded droplet (51.6M)
   2022-12-15T16:36:11.88+0100 [STG/0] OUT Uploading complete
   2022-12-15T16:36:12.49+0100 [STG/0] OUT Cell 60c2fa85-ae1d-48b6-835b-6119378b61c3 stopping instance 8d530b6f-2e72-44d3-ac0d-096372f13c58
   2022-12-15T16:36:12.49+0100 [STG/0] OUT Cell 60c2fa85-ae1d-48b6-835b-6119378b61c3 destroying container for instance 8d530b6f-2e72-44d3-ac0d-096372f13c58
   2022-12-15T16:36:13.28+0100 [STG/0] OUT Cell 60c2fa85-ae1d-48b6-835b-6119378b61c3 successfully destroyed container for instance 8d530b6f-2e72-44d3-ac0d-096372f13c58
   2022-12-15T16:36:14.83+0100 [API/0] OUT Updated app with guid 35d615c4-2c60-4e45-ba9b-4ba3771035d5 ({:droplet_guid=>"81ac4181-a537-40f3-a70d-3e6a5c3ae71b"})
   2022-12-15T16:36:15.02+0100 [API/0] OUT Creating revision for app with guid 35d615c4-2c60-4e45-ba9b-4ba3771035d5
   2022-12-15T16:36:15.15+0100 [API/0] OUT Restarted app with guid 35d615c4-2c60-4e45-ba9b-4ba3771035d5
   2022-12-15T16:36:15.17+0100 [CELL/0] OUT Cell 60c2fa85-ae1d-48b6-835b-6119378b61c3 creating container for instance e12f680d-1b60-4571-79a7-680a
   2022-12-15T16:36:15.67+0100 [CELL/0] OUT Cell 60c2fa85-ae1d-48b6-835b-6119378b61c3 successfully created container for instance e12f680d-1b60-4571-79a7-680a
   2022-12-15T16:36:16.82+0100 [CELL/0] OUT Downloading droplet...
   2022-12-15T16:36:19.40+0100 [CELL/0] OUT Downloaded droplet (51.6M)
   2022-12-15T16:36:19.50+0100 [CELL/0] OUT Starting health monitoring of container
   2022-12-15T16:36:21.95+0100 [APP/PROC/WEB/0] OUT info: Microsoft.AspNetCore.DataProtection.KeyManagement.XmlKeyManager[62]
   2022-12-15T16:36:21.95+0100 [APP/PROC/WEB/0] OUT User profile is available. Using '/home/vcap/app/.aspnet/DataProtection-Keys' as key repository; keys will not be encrypted at rest.
   2022-12-15T16:36:21.97+0100 [APP/PROC/WEB/0] OUT info: Microsoft.AspNetCore.DataProtection.KeyManagement.XmlKeyManager[58]
   2022-12-15T16:36:21.97+0100 [APP/PROC/WEB/0] OUT Creating key {c416f41f-4cd4-4d0b-98eb-e77b73d9036c} with creation date 2022-12-15 15:36:21Z, activation date 2022-12-15 15:36:21Z, and expiration date 2023-03-15 15:36:21Z.
   2022-12-15T16:36:21.98+0100 [APP/PROC/WEB/0] OUT warn: Microsoft.AspNetCore.DataProtection.KeyManagement.XmlKeyManager[35]
   2022-12-15T16:36:21.98+0100 [APP/PROC/WEB/0] OUT No XML encryptor configured. Key {c416f41f-4cd4-4d0b-98eb-e77b73d9036c} may be persisted to storage in unencrypted form.
   2022-12-15T16:36:22.01+0100 [APP/PROC/WEB/0] OUT info: Microsoft.AspNetCore.DataProtection.Repositories.FileSystemXmlRepository[39]
   2022-12-15T16:36:22.01+0100 [APP/PROC/WEB/0] OUT Writing data to file '/home/vcap/app/.aspnet/DataProtection-Keys/key-c416f41f-4cd4-4d0b-98eb-e77b73d9036c.xml'.
   2022-12-15T16:36:22.09+0100 [APP/PROC/WEB/0] ERR Unhandled exception. System.IO.IOException: Failed to bind to address http://0.0.0.0:8080: address already in use.
   2022-12-15T16:36:22.09+0100 [APP/PROC/WEB/0] ERR ---> Microsoft.AspNetCore.Connections.AddressInUseException: Address already in use
   2022-12-15T16:36:22.09+0100 [APP/PROC/WEB/0] ERR ---> System.Net.Sockets.SocketException (98): Address already in use
   2022-12-15T16:36:22.09+0100 [APP/PROC/WEB/0] ERR at System.Net.Sockets.Socket.UpdateStatusAfterSocketErrorAndThrowException(SocketError error, String callerName)
   2022-12-15T16:36:22.09+0100 [APP/PROC/WEB/0] ERR at System.Net.Sockets.Socket.DoBind(EndPoint endPointSnapshot, SocketAddress socketAddress)
   2022-12-15T16:36:22.09+0100 [APP/PROC/WEB/0] ERR at System.Net.Sockets.Socket.Bind(EndPoint localEP)
   2022-12-15T16:36:22.09+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.SocketTransportOptions.CreateDefaultBoundListenSocket(EndPoint endpoint)
   2022-12-15T16:36:22.09+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.SocketConnectionListener.Bind()
   2022-12-15T16:36:22.09+0100 [APP/PROC/WEB/0] ERR --- End of inner exception stack trace ---
   2022-12-15T16:36:22.09+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.SocketConnectionListener.Bind()
   2022-12-15T16:36:22.09+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.SocketTransportFactory.BindAsync(EndPoint endpoint, CancellationToken cancellationToken)
   2022-12-15T16:36:22.09+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Infrastructure.TransportManager.BindAsync(EndPoint endPoint, ConnectionDelegate connectionDelegate, EndpointConfig endpointConfig, CancellationToken cancellationToken)
   2022-12-15T16:36:22.09+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Core.KestrelServerImpl.<>c__DisplayClass30_0`1.<<StartAsync>g__OnBind|0>d.MoveNext()
   2022-12-15T16:36:22.09+0100 [APP/PROC/WEB/0] ERR --- End of stack trace from previous location ---
   2022-12-15T16:36:22.09+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Core.Internal.AddressBinder.BindEndpointAsync(ListenOptions endpoint, AddressBindContext context, CancellationToken cancellationToken)
   2022-12-15T16:36:22.09+0100 [APP/PROC/WEB/0] ERR --- End of inner exception stack trace ---
   2022-12-15T16:36:22.09+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Core.Internal.AddressBinder.BindEndpointAsync(ListenOptions endpoint, AddressBindContext context, CancellationToken cancellationToken)
   2022-12-15T16:36:22.09+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Core.ListenOptions.BindAsync(AddressBindContext context, CancellationToken cancellationToken)
   2022-12-15T16:36:22.09+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Core.Internal.AddressBinder.AddressesStrategy.BindAsync(AddressBindContext context, CancellationToken cancellationToken)
   2022-12-15T16:36:22.09+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Core.Internal.AddressBinder.BindAsync(IEnumerable`1 listenOptions, AddressBindContext context, CancellationToken cancellationToken)
   2022-12-15T16:36:22.09+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Core.KestrelServerImpl.BindAsync(CancellationToken cancellationToken)
   2022-12-15T16:36:22.09+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Core.KestrelServerImpl.StartAsync[TContext](IHttpApplication`1 application, CancellationToken cancellationToken)
   2022-12-15T16:36:22.09+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Hosting.WebHost.StartAsync(CancellationToken cancellationToken)
   2022-12-15T16:36:22.09+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Hosting.WebHostExtensions.RunAsync(IWebHost host, CancellationToken token, String startupMessage)
   2022-12-15T16:36:22.09+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Hosting.WebHostExtensions.RunAsync(IWebHost host, CancellationToken token, String startupMessage)
   2022-12-15T16:36:22.09+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Hosting.WebHostExtensions.RunAsync(IWebHost host, CancellationToken token)
   2022-12-15T16:36:22.09+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Hosting.WebHostExtensions.Run(IWebHost host)
   2022-12-15T16:36:22.09+0100 [APP/PROC/WEB/0] ERR at MySql.Program.Main(String[] args) in C:\Source\Repos\Samples\Connectors\src\MySql\Program.cs:line 34
   2022-12-15T16:36:22.12+0100 [APP/PROC/WEB/0] OUT Exit status 134
   2022-12-15T16:36:22.13+0100 [CELL/SSHD/0] OUT Exit status 0
   2022-12-15T16:36:29.22+0100 [CELL/0] OUT Cell 60c2fa85-ae1d-48b6-835b-6119378b61c3 stopping instance e12f680d-1b60-4571-79a7-680a
   2022-12-15T16:36:29.22+0100 [CELL/0] OUT Cell 60c2fa85-ae1d-48b6-835b-6119378b61c3 destroying container for instance e12f680d-1b60-4571-79a7-680a
   2022-12-15T16:36:29.22+0100 [API/0] OUT Process has crashed with type: "web"
   2022-12-15T16:36:29.23+0100 [API/0] OUT App instance exited with guid 35d615c4-2c60-4e45-ba9b-4ba3771035d5 payload: {"instance"=>"e12f680d-1b60-4571-79a7-680a", "index"=>0, "cell_id"=>"60c2fa85-ae1d-48b6-835b-6119378b61c3", "reason"=>"CRASHED", "exit_description"=>"APP/PROC/WEB: Exited with status 134", "crash_count"=>1, "crash_timestamp"=>1671118589211334257, "version"=>"1168e26f-356e-4938-8cb8-ea46eb2d8c95"}
   2022-12-15T16:36:29.24+0100 [CELL/0] OUT Cell 6390f008-4cf7-410d-b5dc-1b764ec60e18 creating container for instance ead2b309-216e-45bf-59fb-5dae
   2022-12-15T16:36:29.54+0100 [PROXY/0] OUT Exit status 137
   2022-12-15T16:36:29.71+0100 [CELL/0] OUT Cell 6390f008-4cf7-410d-b5dc-1b764ec60e18 successfully created container for instance ead2b309-216e-45bf-59fb-5dae
   2022-12-15T16:36:29.73+0100 [CELL/0] OUT Cell 60c2fa85-ae1d-48b6-835b-6119378b61c3 successfully destroyed container for instance e12f680d-1b60-4571-79a7-680a
   2022-12-15T16:36:30.69+0100 [CELL/0] OUT Downloading droplet...
   2022-12-15T16:36:33.07+0100 [CELL/0] OUT Downloaded droplet (51.6M)
   2022-12-15T16:36:33.16+0100 [CELL/0] OUT Starting health monitoring of container
   2022-12-15T16:36:35.12+0100 [APP/PROC/WEB/0] OUT info: Microsoft.AspNetCore.DataProtection.KeyManagement.XmlKeyManager[62]
   2022-12-15T16:36:35.12+0100 [APP/PROC/WEB/0] OUT User profile is available. Using '/home/vcap/app/.aspnet/DataProtection-Keys' as key repository; keys will not be encrypted at rest.
   2022-12-15T16:36:35.14+0100 [APP/PROC/WEB/0] OUT info: Microsoft.AspNetCore.DataProtection.KeyManagement.XmlKeyManager[58]
   2022-12-15T16:36:35.14+0100 [APP/PROC/WEB/0] OUT Creating key {a9958060-3daa-4ce9-a01a-2460afb7f3c8} with creation date 2022-12-15 15:36:35Z, activation date 2022-12-15 15:36:35Z, and expiration date 2023-03-15 15:36:35Z.
   2022-12-15T16:36:35.15+0100 [APP/PROC/WEB/0] OUT warn: Microsoft.AspNetCore.DataProtection.KeyManagement.XmlKeyManager[35]
   2022-12-15T16:36:35.15+0100 [APP/PROC/WEB/0] OUT No XML encryptor configured. Key {a9958060-3daa-4ce9-a01a-2460afb7f3c8} may be persisted to storage in unencrypted form.
   2022-12-15T16:36:35.15+0100 [APP/PROC/WEB/0] OUT info: Microsoft.AspNetCore.DataProtection.Repositories.FileSystemXmlRepository[39]
   2022-12-15T16:36:35.15+0100 [APP/PROC/WEB/0] OUT Writing data to file '/home/vcap/app/.aspnet/DataProtection-Keys/key-a9958060-3daa-4ce9-a01a-2460afb7f3c8.xml'.
   2022-12-15T16:36:35.24+0100 [APP/PROC/WEB/0] ERR Unhandled exception. System.IO.IOException: Failed to bind to address http://0.0.0.0:8080: address already in use.
   2022-12-15T16:36:35.24+0100 [APP/PROC/WEB/0] ERR ---> Microsoft.AspNetCore.Connections.AddressInUseException: Address already in use
   2022-12-15T16:36:35.24+0100 [APP/PROC/WEB/0] ERR ---> System.Net.Sockets.SocketException (98): Address already in use
   2022-12-15T16:36:35.24+0100 [APP/PROC/WEB/0] ERR at System.Net.Sockets.Socket.UpdateStatusAfterSocketErrorAndThrowException(SocketError error, String callerName)
   2022-12-15T16:36:35.24+0100 [APP/PROC/WEB/0] ERR at System.Net.Sockets.Socket.DoBind(EndPoint endPointSnapshot, SocketAddress socketAddress)
   2022-12-15T16:36:35.24+0100 [APP/PROC/WEB/0] ERR at System.Net.Sockets.Socket.Bind(EndPoint localEP)
   2022-12-15T16:36:35.24+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.SocketTransportOptions.CreateDefaultBoundListenSocket(EndPoint endpoint)
   2022-12-15T16:36:35.24+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.SocketConnectionListener.Bind()
   2022-12-15T16:36:35.24+0100 [APP/PROC/WEB/0] ERR --- End of inner exception stack trace ---
   2022-12-15T16:36:35.24+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.SocketConnectionListener.Bind()
   2022-12-15T16:36:35.24+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.SocketTransportFactory.BindAsync(EndPoint endpoint, CancellationToken cancellationToken)
   2022-12-15T16:36:35.24+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Infrastructure.TransportManager.BindAsync(EndPoint endPoint, ConnectionDelegate connectionDelegate, EndpointConfig endpointConfig, CancellationToken cancellationToken)
   2022-12-15T16:36:35.24+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Core.KestrelServerImpl.<>c__DisplayClass30_0`1.<<StartAsync>g__OnBind|0>d.MoveNext()
   2022-12-15T16:36:35.24+0100 [APP/PROC/WEB/0] ERR --- End of stack trace from previous location ---
   2022-12-15T16:36:35.24+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Core.Internal.AddressBinder.BindEndpointAsync(ListenOptions endpoint, AddressBindContext context, CancellationToken cancellationToken)
   2022-12-15T16:36:35.24+0100 [APP/PROC/WEB/0] ERR --- End of inner exception stack trace ---
   2022-12-15T16:36:35.24+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Core.Internal.AddressBinder.BindEndpointAsync(ListenOptions endpoint, AddressBindContext context, CancellationToken cancellationToken)
   2022-12-15T16:36:35.24+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Core.ListenOptions.BindAsync(AddressBindContext context, CancellationToken cancellationToken)
   2022-12-15T16:36:35.24+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Core.Internal.AddressBinder.AddressesStrategy.BindAsync(AddressBindContext context, CancellationToken cancellationToken)
   2022-12-15T16:36:35.24+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Core.Internal.AddressBinder.BindAsync(IEnumerable`1 listenOptions, AddressBindContext context, CancellationToken cancellationToken)
   2022-12-15T16:36:35.24+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Core.KestrelServerImpl.BindAsync(CancellationToken cancellationToken)
   2022-12-15T16:36:35.24+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Core.KestrelServerImpl.StartAsync[TContext](IHttpApplication`1 application, CancellationToken cancellationToken)
   2022-12-15T16:36:35.24+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Hosting.WebHost.StartAsync(CancellationToken cancellationToken)
   2022-12-15T16:36:35.24+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Hosting.WebHostExtensions.RunAsync(IWebHost host, CancellationToken token, String startupMessage)
   2022-12-15T16:36:35.24+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Hosting.WebHostExtensions.RunAsync(IWebHost host, CancellationToken token, String startupMessage)
   2022-12-15T16:36:35.24+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Hosting.WebHostExtensions.RunAsync(IWebHost host, CancellationToken token)
   2022-12-15T16:36:35.24+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Hosting.WebHostExtensions.Run(IWebHost host)
   2022-12-15T16:36:35.24+0100 [APP/PROC/WEB/0] ERR at MySql.Program.Main(String[] args) in C:\Source\Repos\Samples\Connectors\src\MySql\Program.cs:line 34
   2022-12-15T16:36:35.27+0100 [APP/PROC/WEB/0] OUT Exit status 134
   2022-12-15T16:36:35.28+0100 [CELL/SSHD/0] OUT Exit status 0
   2022-12-15T16:36:42.34+0100 [CELL/0] OUT Cell 6390f008-4cf7-410d-b5dc-1b764ec60e18 stopping instance ead2b309-216e-45bf-59fb-5dae
   2022-12-15T16:36:42.34+0100 [CELL/0] OUT Cell 6390f008-4cf7-410d-b5dc-1b764ec60e18 destroying container for instance ead2b309-216e-45bf-59fb-5dae
   2022-12-15T16:36:42.35+0100 [API/0] OUT Process has crashed with type: "web"
   2022-12-15T16:36:42.36+0100 [API/0] OUT App instance exited with guid 35d615c4-2c60-4e45-ba9b-4ba3771035d5 payload: {"instance"=>"ead2b309-216e-45bf-59fb-5dae", "index"=>0, "cell_id"=>"6390f008-4cf7-410d-b5dc-1b764ec60e18", "reason"=>"CRASHED", "exit_description"=>"APP/PROC/WEB: Exited with status 134", "crash_count"=>2, "crash_timestamp"=>1671118602334512247, "version"=>"1168e26f-356e-4938-8cb8-ea46eb2d8c95"}
   2022-12-15T16:36:42.36+0100 [CELL/0] OUT Cell 60c2fa85-ae1d-48b6-835b-6119378b61c3 creating container for instance 319a6a39-210d-43ef-56b2-c438
   2022-12-15T16:36:42.61+0100 [PROXY/0] OUT Exit status 137
   2022-12-15T16:36:42.77+0100 [CELL/0] OUT Cell 6390f008-4cf7-410d-b5dc-1b764ec60e18 successfully destroyed container for instance ead2b309-216e-45bf-59fb-5dae
   2022-12-15T16:36:42.82+0100 [CELL/0] OUT Cell 60c2fa85-ae1d-48b6-835b-6119378b61c3 successfully created container for instance 319a6a39-210d-43ef-56b2-c438
   2022-12-15T16:36:43.29+0100 [CELL/0] OUT Downloading droplet...
   2022-12-15T16:36:43.82+0100 [CELL/0] OUT Downloaded droplet
   2022-12-15T16:36:43.92+0100 [CELL/0] OUT Starting health monitoring of container
   2022-12-15T16:36:46.04+0100 [APP/PROC/WEB/0] OUT info: Microsoft.AspNetCore.DataProtection.KeyManagement.XmlKeyManager[62]
   2022-12-15T16:36:46.04+0100 [APP/PROC/WEB/0] OUT User profile is available. Using '/home/vcap/app/.aspnet/DataProtection-Keys' as key repository; keys will not be encrypted at rest.
   2022-12-15T16:36:46.06+0100 [APP/PROC/WEB/0] OUT info: Microsoft.AspNetCore.DataProtection.KeyManagement.XmlKeyManager[58]
   2022-12-15T16:36:46.06+0100 [APP/PROC/WEB/0] OUT Creating key {a5d0f073-5491-43b2-8b51-7f6ab9fcb154} with creation date 2022-12-15 15:36:46Z, activation date 2022-12-15 15:36:46Z, and expiration date 2023-03-15 15:36:46Z.
   2022-12-15T16:36:46.07+0100 [APP/PROC/WEB/0] OUT warn: Microsoft.AspNetCore.DataProtection.KeyManagement.XmlKeyManager[35]
   2022-12-15T16:36:46.07+0100 [APP/PROC/WEB/0] OUT No XML encryptor configured. Key {a5d0f073-5491-43b2-8b51-7f6ab9fcb154} may be persisted to storage in unencrypted form.
   2022-12-15T16:36:46.07+0100 [APP/PROC/WEB/0] OUT info: Microsoft.AspNetCore.DataProtection.Repositories.FileSystemXmlRepository[39]
   2022-12-15T16:36:46.07+0100 [APP/PROC/WEB/0] OUT Writing data to file '/home/vcap/app/.aspnet/DataProtection-Keys/key-a5d0f073-5491-43b2-8b51-7f6ab9fcb154.xml'.
   2022-12-15T16:36:46.18+0100 [APP/PROC/WEB/0] ERR Unhandled exception. System.IO.IOException: Failed to bind to address http://0.0.0.0:8080: address already in use.
   2022-12-15T16:36:46.18+0100 [APP/PROC/WEB/0] ERR ---> Microsoft.AspNetCore.Connections.AddressInUseException: Address already in use
   2022-12-15T16:36:46.18+0100 [APP/PROC/WEB/0] ERR ---> System.Net.Sockets.SocketException (98): Address already in use
   2022-12-15T16:36:46.18+0100 [APP/PROC/WEB/0] ERR at System.Net.Sockets.Socket.UpdateStatusAfterSocketErrorAndThrowException(SocketError error, String callerName)
   2022-12-15T16:36:46.18+0100 [APP/PROC/WEB/0] ERR at System.Net.Sockets.Socket.DoBind(EndPoint endPointSnapshot, SocketAddress socketAddress)
   2022-12-15T16:36:46.18+0100 [APP/PROC/WEB/0] ERR at System.Net.Sockets.Socket.Bind(EndPoint localEP)
   2022-12-15T16:36:46.18+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.SocketTransportOptions.CreateDefaultBoundListenSocket(EndPoint endpoint)
   2022-12-15T16:36:46.18+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.SocketConnectionListener.Bind()
   2022-12-15T16:36:46.18+0100 [APP/PROC/WEB/0] ERR --- End of inner exception stack trace ---
   2022-12-15T16:36:46.18+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.SocketConnectionListener.Bind()
   2022-12-15T16:36:46.18+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.SocketTransportFactory.BindAsync(EndPoint endpoint, CancellationToken cancellationToken)
   2022-12-15T16:36:46.18+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Infrastructure.TransportManager.BindAsync(EndPoint endPoint, ConnectionDelegate connectionDelegate, EndpointConfig endpointConfig, CancellationToken cancellationToken)
   2022-12-15T16:36:46.18+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Core.KestrelServerImpl.<>c__DisplayClass30_0`1.<<StartAsync>g__OnBind|0>d.MoveNext()
   2022-12-15T16:36:46.18+0100 [APP/PROC/WEB/0] ERR --- End of stack trace from previous location ---
   2022-12-15T16:36:46.18+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Core.Internal.AddressBinder.BindEndpointAsync(ListenOptions endpoint, AddressBindContext context, CancellationToken cancellationToken)
   2022-12-15T16:36:46.18+0100 [APP/PROC/WEB/0] ERR --- End of inner exception stack trace ---
   2022-12-15T16:36:46.18+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Core.Internal.AddressBinder.BindEndpointAsync(ListenOptions endpoint, AddressBindContext context, CancellationToken cancellationToken)
   2022-12-15T16:36:46.18+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Core.ListenOptions.BindAsync(AddressBindContext context, CancellationToken cancellationToken)
   2022-12-15T16:36:46.18+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Core.Internal.AddressBinder.AddressesStrategy.BindAsync(AddressBindContext context, CancellationToken cancellationToken)
   2022-12-15T16:36:46.18+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Core.Internal.AddressBinder.BindAsync(IEnumerable`1 listenOptions, AddressBindContext context, CancellationToken cancellationToken)
   2022-12-15T16:36:46.18+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Core.KestrelServerImpl.BindAsync(CancellationToken cancellationToken)
   2022-12-15T16:36:46.18+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Server.Kestrel.Core.KestrelServerImpl.StartAsync[TContext](IHttpApplication`1 application, CancellationToken cancellationToken)
   2022-12-15T16:36:46.18+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Hosting.WebHost.StartAsync(CancellationToken cancellationToken)
   2022-12-15T16:36:46.18+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Hosting.WebHostExtensions.RunAsync(IWebHost host, CancellationToken token, String startupMessage)
   2022-12-15T16:36:46.18+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Hosting.WebHostExtensions.RunAsync(IWebHost host, CancellationToken token, String startupMessage)
   2022-12-15T16:36:46.18+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Hosting.WebHostExtensions.RunAsync(IWebHost host, CancellationToken token)
   2022-12-15T16:36:46.18+0100 [APP/PROC/WEB/0] ERR at Microsoft.AspNetCore.Hosting.WebHostExtensions.Run(IWebHost host)
   2022-12-15T16:36:46.18+0100 [APP/PROC/WEB/0] ERR at MySql.Program.Main(String[] args) in C:\Source\Repos\Samples\Connectors\src\MySql\Program.cs:line 34
   2022-12-15T16:36:46.22+0100 [APP/PROC/WEB/0] OUT Exit status 134
   2022-12-15T16:36:46.22+0100 [CELL/SSHD/0] OUT Exit status 0
   2022-12-15T16:36:53.79+0100 [CELL/0] OUT Cell 60c2fa85-ae1d-48b6-835b-6119378b61c3 stopping instance 319a6a39-210d-43ef-56b2-c438
   2022-12-15T16:36:53.79+0100 [CELL/0] OUT Cell 60c2fa85-ae1d-48b6-835b-6119378b61c3 destroying container for instance 319a6a39-210d-43ef-56b2-c438
   2022-12-15T16:36:53.80+0100 [API/0] OUT Process has crashed with type: "web"
   2022-12-15T16:36:53.81+0100 [API/0] OUT App instance exited with guid 35d615c4-2c60-4e45-ba9b-4ba3771035d5 payload: {"instance"=>"319a6a39-210d-43ef-56b2-c438", "index"=>0, "cell_id"=>"60c2fa85-ae1d-48b6-835b-6119378b61c3", "reason"=>"CRASHED", "exit_description"=>"APP/PROC/WEB: Exited with status 134", "crash_count"=>3, "crash_timestamp"=>1671118613787599078, "version"=>"1168e26f-356e-4938-8cb8-ea46eb2d8c95"}
   2022-12-15T16:36:54.10+0100 [PROXY/0] OUT Exit status 137
   2022-12-15T16:36:54.29+0100 [CELL/0] OUT Cell 60c2fa85-ae1d-48b6-835b-6119378b61c3 successfully destroyed container for instance 319a6a39-210d-43ef-56b2-c438
hananiel commented 1 year ago

resolved by #1080