Skip to content

fabianTMC/noderig

 
 

Repository files navigation

Noderig - OS stats as JSON via a GET request

Build Status

Noderig collect OS metrics and expose them through a JSON HTTP endpoint. Each collector is easily configurable, thanks to a simple level cursor

Noderig metrics:

  • CPU
  • Memory
  • Load
  • Disk
  • Net
  • External collectors

Status

Noderig is currently under development. Feel free to comment or contribute! This JSON version is based on the original Sensision version

Building

Noderig is pretty easy to build.

  • Clone the repository
  • Install glide, follow instructions here https://glide.sh/
  • Download dependencies glide install
  • Build and run go run noderig.go

Usage

noderig [flags]

Flags:
      --config string     config file to use
  -l  --listen string     listen address (default "127.0.0.1:9100")
  -v  --verbose           verbose output
      --period uint       default collection period (default 1000)
      --cpu uint8         cpu metrics level (default 1)
      --disk uint8        disk metrics level (default 1)
      --mem uint8         memory metrics level (default 1)
      --net uint8         network metrics level (default 1)
      --load uint8        load metrics level (default 1)
  -c  --collectors string external collectors directory (default "./collectors")
  -k  --keep-for uint     keep collectors data for the given number of fetch (default 3)

Collectors

Noderig have some built-in collectors.

CPU

0disabled metrics
1os.cpu{}combined percentage of cpu usage
2os.cpu.iowait{}combined percentage of cpu iowait
os.cpu.user{}combined percentage of cpu user
os.cpu.systems{}combined percentage of cpu systems
os.cpu.nice{}combined percentage of cpu nice
os.cpu.irq{}combined percentage of cpu irq
3os.cpu.iowait{chore:n}chore percentage of cpu iowait
os.cpu.user{chore:n}chore percentage of cpu user
os.cpu.systems{chore:n}chore percentage of cpu systems
os.cpu.nice{chore:n}chore percentage of cpu nice
os.cpu.irq{chore:n}chore percentage of cpu irq

Memory

0disabled metrics
1os.mem{}percentage of memory used
os.swap{}percentage of swap used
2os.mem.used{}used memory (bytes)
os.mem.total{}total memory (bytes)
os.swap.used{}used swap (bytes)
os.swap.total{}total swap (bytes)

Load

0disabled metrics
1os.load1{}load 1
2os.load5{}load 5
os.load15{}load 15

Disk

0disabled metrics
1os.disk.fs{disk:/dev/sda1}disk used percent
2os.disk.fs.used{disk:/dev/sda1, mount:/}disk used capacity (bytes)
os.disk.fs.total{disk:/dev/sda1, mount:/}disk total capacity (bytes)
os.disk.fs.inodes.used{disk:/dev/sda1, mount:/}disk used inodes
os.disk.fs.inodes.total{disk:/dev/sda1, mount:/}disk total inodes
3os.disk.fs.bytes.read{name:sda1}disk read count (bytes)
os.disk.fs.bytes.write{name:sda1}disk write count (bytes)
4os.disk.fs.io.read{name:sda1}disk io read count (bytes)
os.disk.fs.io.write{disk:/sda1}disk io write count (bytes)
5os.disk.fs.io.read.ms{name:sda1}disk io read time (ms)
os.disk.fs.io.write.ms{name:sda1}disk io write time (ms)
os.disk.fs.io{name:sda1}disk io in progress (count)
os.disk.fs.io.ms{name:sda1}disk io time (ms)
os.disk.fs.io.weighted.ms{name:sda1}disk io weighted time (ms)

Net

0disabled metrics
1os.net.bytes{direction:in}in bytes count (bytes)
os.net.bytes{direction:out}out bytes count (bytes)
2os.net.bytes{direction:in, iface:eth0}iface in bytes count (bytes)
os.net.bytes{direction:out, iface:eth0}iface out bytes count (bytes)
3os.net.packets{direction:in, iface:eth0}iface in packet count (packets)
os.net.packets{direction:out, iface:eth0}iface out packet count (packets)
os.net.errs{direction:in, iface:eth0}iface in error count (errors)
os.net.errs{direction:out, iface:eth0}iface out error count (errors)
os.net.dropped{direction:in, iface:eth0}iface in drop count (drops)
os.net.dropped{direction:out, iface:eth0}iface out drop count (drops)

Configuration

Noderig can read a simple default config file.

Configuration is load and override in the following order:

  • /etc/noderig/config.yaml
  • ~/noderig/config.yaml
  • ./config.yaml
  • config filepath from command line

Definitions

Config is composed of three main parts and some config fields:

Collectors

Noderig have some built-in collectors. They could be configured by a log level. You can also defined custom collectors, in an scollector way. (see: http://bosun.org/scollector/external-collectors)

cpu: 1  # CPU collector level     (Optional, default: 1)
mem: 1  # Memory collector level  (Optional, default: 1)
load: 1 # Load collector level    (Optional, default: 1)
disk: 1 # Disk collector level    (Optional, default: 1)
net: 1  # Network collector level (Optional, default: 1)

Parameters

Noderig can be customized through some parameters.

period: 1000             # Duration within all the sources should be scraped in ms (Optional, default: 1000)
listen: none             # Listen address, set to none to disable http endpoint    (Optional, default: 127.0.0.1:9100)
collectors: /opt/noderig # Custom collectors directory                             (Optional, default: none)

Collectors Options

Some collectors can accept optional parameters.

net-opts:
  interfaces:            # Give a filtering list of interfaces for which you want metrics
    - eth0
    - eth1
disk-opts:
  names:            # Give a filtering list of disks for which you want metrics
    - sda1
    - sda3

Sample metrics

[{
	"name": "os.cpu{}",
	"value": "27.897724"
}, {
	"name": "os.mem{}",
	"value": "47.799676"
}, {
	"name": "os.swap{}",
	"value": "0.216893"
}, {
	"name": "os.load1{}",
	"value": "1.630000"
}, {
	"name": "os.net.bytes{direction=in}",
	"value": "417242163"
}, {
	"name": "os.net.bytes{direction=out}",
	"value": "20276160"
}, {
	"name": "os.disk.fs{disk=/dev/sda1}{mount=/boot/efi}",
	"value": "7.143082"
}]

Contributing

Instructions on how to contribute to Noderig are available on the Contributing page.

Get in touch

Packages

No packages published

Languages

  • Go 93.0%
  • Makefile 7.0%