jim139 / gollectd

A go parser for the collectd binary protocol

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

gollectd

This is yet another implementation of a collectd binary protocol parser in Go, heavenly inspired by gocollectd.

Installation

go get github.com/kimor79/gollectd

Usage

import (
    collectd github.com/kimor79/gollectd
)

types, err := collectd.TypesDBFile("/path/to/types.db")

buffer := make([]byte, 1452)
n, _, err := socket.ReadFromUDP(buffer)
packets, err := collectd.Packets(buffer[:n], types)

About

A go parser for the collectd binary protocol

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:Go 100.0%