Description
Describe the error
This documentation is missing very important information on how to setup telemetry.
Basically the gist of it is, that I had to open port 8080 (and not port 9243) in order to get telemetry to work. I am using CentOS 9, so for me to open port 8080 is this:
sudo firewall-cmd --zone=public --add-port=8080/tcp --permanent
and for Ubuntu and Debian, you need to do this:
sudo ufw allow 8080/tcp
I ended up opening port 9243 and port 8080. Once I did that, and restarted the algorand node service, everything worked.
Link to the page or line
Please click here to see where the documentation is missing information.
Optional - The recommended fix if you have one
Also, the documentation says
If the Debian package is used,
The problem is that I thought I was except from having to use the this command:
sudo -u algorand -H -E diagcfg telemetry enable
for example because I used the package manager but I was on CentOS. It turns out, I needed to do it anyway. So your documentation needs to be more general, and include the package manager install in for all package manager installations.