Monitoring your Velas Node by StakingBridge.com

The Velas node will increase resource use as the network expands and demand increases, that is why it is necessary to keep monitored your CPU, RAM, Network and other stats.

sudo yum -y updatecat <<EOF | sudo tee /etc/yum.repos.d/influxdb.repo[influxdb] name = InfluxDB Repository - RHEL  baseurl = https://repos.influxdata.com/rhel/7/x86_64/stable/ enabled = 1 gpgcheck = 1 gpgkey = https://repos.influxdata.com/influxdb.key EOFsudo dnf -y install telegraf
wget -qO- https://repos.influxdata.com/influxdb.key | sudo apt-key add -source /etc/lsb-releaseecho "deb https://repos.influxdata.com/${DISTRIB_ID,,} ${DISTRIB_CODENAME} stable" | sudo tee /etc/apt/sources.list.d/influxdb.listapt updateapt install telegraf
sudo vi /etc/telegraf/telegraf.conf
# Global Agent Configuration
[agent]
hostname = “YOUR_NODE_ALIAS” # set this to a name you want to identify your node in the dashboard
flush_interval = “15s”
interval = “15s”
# Input Plugins
[[inputs.cpu]]
percpu = true
totalcpu = true
collect_cpu_time = false
report_active = false
[[inputs.disk]]
ignore_fs = [“devtmpfs”, “devfs”]
[[inputs.io]]
[[inputs.mem]]
[[inputs.net]]
[[inputs.system]]
[[inputs.swap]]
[[inputs.netstat]]
[[inputs.processes]]
[[inputs.kernel]]
[[inputs.diskio]]
# Output Plugin InfluxDB
[[outputs.influxdb]]
database = “metricsdb”
urls = [ “http://velasmonitor.stakingbridge.com:8086" ]
username = “metrics”
password = “password”
sudo systemctl start telegraf
"Please note that we are in experimentation stage, you may encounter errors, inaccurate metrics or bugs. Stakingbridge.com is not responsible for any inconvenience caused by the uses of our website"

--

--

Get the Medium app

A button that says 'Download on the App Store', and if clicked it will lead you to the iOS App store
A button that says 'Get it on, Google Play', and if clicked it will lead you to the Google Play store