New to Netdata. I really like the beautiful graphs. Looks really nice.
I set up an SNMP collector using the following go.d/snmp.conf:
jobs:
- name: xxxxxxxxxxxx
update_every: 3
hostname: “xxx.xxx.xxx.xxx”
community: public
options:
version: 1
charts:- id: “bandwidth_port3”
title: “Bandwidth for eth0 WAN”
units: “kilobits/s”
type: “area”
family: “Ports”
dimensions:- name: “Download”
oid: “1.3.6.1.2.1.2.2.1.10.3”
algorithm: “incremental”
multiplier: 8
divisor: 1024 - name: “Upload”
oid: “1.3.6.1.2.1.2.2.1.16.3”
multiplier: 8
divisor: 1024
- name: “Download”
- id: “bandwidth_port3”
It looks great but there are a couple of things I really need. I would like to combine in/ out or upload / download and I would like to see a total. SNMP is not providing those metrics but I should be able to get them with a little math if I knew how. Can anyone point me in the right direction?