When running Gossamer with the following CLI arguments --pprof.enabled --pprof.listening-address='0.0.0.0:6060' the configuration was keeping enabled as false and listening-address as :6060.
After a quick investigation I saw that the pprof flags were not using the correct viper configuration that binds the values passed through CLI to the configuration structure.
That will enable the infrastructure team to collect profiling informations
Changes
--pprof.enabled --pprof.listening-address='0.0.0.0:6060'
the configuration was keepingenabled
as false andlistening-address
as:6060
.Tests
N/A
Issues
N/A