Hi,
You may want to look at
If your app is already running the built in server, you can
import _ "expvar"
and then you will see a lot of internal counters at
localhost:6060/debug/vars
you can then add your own counters to it, which will also be displayed under that same url
Here is a blog post about integrating it datadog (you can use any monitoring tool you wish though)
Hope that's what you were looking for.
Thanks
Diego