Skip to content

Commit

Permalink
Add README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexey Dubkov committed Feb 26, 2015
1 parent 5a554e8 commit a5c2167
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
go-zabbix
==============================================================================
Golang package, implement zabbix sender protocol for send metrics to zabbix.

Example:
```go
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)
}
```

0 comments on commit a5c2167

Please sign in to comment.