Go to file
2015-03-01 14:12:53 -08:00
LICENSE Initial commit 2015-02-26 01:43:52 -08:00
README.md Add README.md 2015-02-26 10:35:15 -08:00
zabbix.go Refactoring zabbix.go 2015-03-01 14:06:42 -08:00

go-zabbix

Golang package, implement zabbix sender protocol for send metrics to zabbix.

Example:

package main

import (
    "time"
    . "github.com/blacked/go-zabbix"
)

const (
    defaultHost  = `localhost`
    defaultPort  = 10051
)

func main() {
    var metrics []*Metric
    metrics = append(metrics, NewMetric("localhost", "cpu", "1.22", time.Now().Unix()))
    metrics = append(metrics, NewMetric("localhost", "status", "OK"))

    // Create instance of Packet class
    packet := NewPacket(metrics)

    // Send packet to zabbix
    z := NewSender(defaultHost, defaultPort)
    z.Send(packet)
}