Skip to main content

go.d.plugin

go.d.plugin is a Netdata external plugin:

  • Independent Operation: Runs as a separate process from Netdata core, visible in system process lists (ps fax).
  • Automated Management: Integrated with Netdata's lifecycle management, managed automatically by Netdata (start/stop operations).
  • Efficient Communication: Uses a unidirectional pipe for optimal data transfer to Netdata.
  • Modular Architecture:
    • Supports an unlimited number of data collection modules.
    • Each module can run multiple collection jobs simultaneously.
    • Easy to extend with new collection modules

Required Linux capabilities

All capabilities are set automatically during Netdata installation using the official installation method.

CapabilityRequired by
CAP_NET_RAWPing
CAP_NET_ADMINWireguard
CAP_DAC_READ_SEARCHFilecheck

Available modules

Data Collection Modules
NameMonitors
adaptec_raidAdaptec Hardware RAID
activemqActiveMQ
apWireless AP
apacheApache
apcupsdUPS (APC)
beanstalkBeanstalk
bindISC Bind
boincBOINC
cassandraCassandra
cephCeph
chronyChrony
clickhouseClickHouse
cockroachdbCockroachDB
consulConsul
corednsCoreDNS
couchbaseCouchbase
couchdbCouchDB
dmcacheDMCache
dnsdistDnsdist
dnsmasqDnsmasq DNS Forwarder
dnsmasq_dhcpDnsmasq DHCP
dns_queryDNS Query RTT
dockerDocker Engine
docker_engineDocker Engine
dockerhubDocker Hub
dovecotDovecot
elasticsearchElasticsearch/OpenSearch
envoyEnvoy
eximExim
fail2banFail2Ban Jails
filecheckFiles and Directories
fluentdFluentd
freeradiusFreeRADIUS
gearmanGearman
haproxyHAProxy
hddtempDisks temperature
hdfsHDFS
hpssaHPE Smart Array
httpcheckAny HTTP Endpoint
icecastIcecast
intelgpuIntel integrated GPU
ipfsIPFS
isc_dhcpdISC DHCP
k8s_kubeletKubelet
k8s_kubeproxyKube-proxy
k8s_stateKubernetes cluster state
lighttpdLighttpd
litespeedLitespeed
logindsystemd-logind
logstashLogstash
lvmLVM logical volumes
maxscaleMaxScale
megacliMegaCli Hardware Raid
memcachedMemcached
mongoDBMongoDB
monitMonit
mysqlMySQL
nginxNGINX
nginxplusNGINX Plus
nginxunitNGINX Unit
nginxvtsNGINX VTS
nsdNSD (NLnet Labs)
ntpdNTP daemon
nvidia_smiNvidia SMI
nvmeNVMe devices
openldapOpenLDAP
openvpnOpenVPN
openvpn_status_logOpenVPN
pgbouncerPgBouncer
oracledbOracle DB
phpdaemonphpDaemon
phpfpmPHP-FPM
piholePi-hole
pikaPika
pingAny network host
prometheusAny Prometheus Endpoint
portcheckAny TCP Endpoint
postgresPostgreSQL
postfixPostfix
powerdnsPowerDNS Authoritative Server
powerdns_recursorPowerDNS Recursor
proxysqlProxySQL
pulsarApache Pulsar
puppetPuppet
rabbitmqRabbitMQ
redisRedis
rethinkdbRethinkDB
riakkvRiak KV
rspamdRspamd
sambaSamba
scaleioDell EMC ScaleIO
sensorsHardware Sensors
SNMPSNMP
squidSquid
squidlogSquid
smartctlS.M.A.R.T Storage Devices
spigotmcSpigotMC
storcliBroadcom Hardware RAID
supervisordSupervisor
systemdunitsSystemd unit state
tengineTengine
tomcatTomcat
torTor
traefikTraefik
typesenseTypesense
unboundUnbound
upsdUPSd (Nut)
uwsgiuWSGI
varnishVarnish
vcsavCenter Server Appliance
vernemqVerneMQ
vsphereVMware vCenter Server
w1sensor1-Wire Sensors
web_logApache/NGINX
wireguardWireGuard
whoisqueryDomain Expiry
windowsWindows
x509checkDigital Certificates
zfspoolZFS Pools
zookeeperZooKeeper

Configuration

Edit the go.d.conf configuration file using edit-config from the Netdata config directory, which is typically at /etc/netdata.

cd /etc/netdata # Replace this path with your Netdata config directory
sudo ./edit-config go.d.conf

Configurations are written in YAML.

Enable a collector

To enable a collector you should edit go.d.conf to uncomment the collector in question and change it from no to yes.

For example, to enable the example plugin you would need to update go.d.conf from something like:

modules:
# example: no

to

modules:
example: yes

Then restart netdata for the change to take effect.

Troubleshooting

Plugin CLI:

Usage:
orchestrator [OPTIONS] [update every]

Application Options:
-m, --modules= module name to run (default: all)
-c, --config-dir= config dir to read
-w, --watch-path= config path to watch
-d, --debug debug mode
-v, --version display the version and exit

Help Options:
-h, --help Show this help message

To debug specific module:

# become user netdata
sudo su -s /bin/bash netdata

# run plugin in debug mode
./go.d.plugin -d -m <module name>

Change <module name> to the module name you want to debug.


Do you have any feedback for this page? If so, you can open a new issue on our netdata/learn repository.