Skip to content

Commit

Permalink
adjust docs and version, prep for release
Browse files Browse the repository at this point in the history
  • Loading branch information
markrechler committed May 13, 2015
1 parent 3c1be7f commit 8c57cc2
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 22 deletions.
35 changes: 14 additions & 21 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,46 +20,39 @@ Installing

You can download either pre-compiled binaries or the source of the latest [release](https://github.com/bitly/statsdaemon/releases).

Binary Example:
```
wget 'https://github.com/bitly/statsdaemon/releases/download/v0.6-alpha/statsdaemon-0.6-alpha.linux-amd64.go1.3.tar.gz'
tar xpf statsdaemon-0.6-alpha.linux-amd64.go1.3.tar.gz
cd statsdaemon-0.6-alpha.linux-amd64.go1.3
./statsdaemon --help
```
## Current Stable Release: `v0.7`
* [statsdaemon-0.7.darwin-amd64.go1.4.2.tar.gz](https://github.com/bitly/statsdaemon/releases/download/v0.7/statsdaemon-0.7.darwin-amd64.go1.4.2.tar.gz)
* [statsdaemon-0.7.linux-amd64.go1.4.2.tar.gz](https://github.com/bitly/statsdaemon/releases/download/v0.7/statsdaemon-0.7.linux-amd64.go1.4.2.tar.gz)

Source Example:
```
wget 'https://github.com/bitly/statsdaemon/archive/v0.6-alpha.tar.gz'
tar xpf v0.6-alpha.tar.gz
cd statsdaemon-0.6-alpha
go build
./statsdaemon-0.6-alpha --help
```
## Older Releases
* [statsdaemon-0.6-alpha.darwin-amd64.go1.3.tar.gz](https://github.com/bitly/statsdaemon/releases/download/v0.6-alpha/statsdaemon-0.6-alpha.darwin-amd64.go1.3.tar.gz)
* [statsdaemon-0.6-alpha.linux-amd64.go1.3.tar.gz](https://github.com/bitly/statsdaemon/releases/download/v0.6-alpha/statsdaemon-0.6-alpha.linux-amd64.go1.3.tar.gz)
* [statsdaemon-0.5.2-alpha.linux-amd64.go1.1.1.tar.gz](https://github.com/bitly/statsdaemon/releases/download/v0.5.2-alpha/statsdaemon-0.5.2-alpha.linux-amd64.go1.1.1.tar.gz)

To work with the latest dev code, just clone master and build.
## Building from Source
```
git clone https://github.com/bitly/statsdaemon.git
git clone https://github.com/bitly/statsdaemon
cd statsdaemon
go get github.com/bmizerany/assert #for tests
go build
./statsdaemon --help
```


Command Line Options
====================

```
Usage of ./statsdaemon:
-address=":8125": UDP service address
-max-udp-packet-size=1472: Maximum udp packet size
-debug=false: print statistics sent to graphite
-delete-gauges=true: don't send values to graphite for inactive gauges, as opposed to sending the previous value
-flush-interval=10: Flush interval (seconds)
-graphite="127.0.0.1:2003": Graphite service address (or - to disable)
-max-udp-packet-size=1472: Maximum UDP packet size
-percent-threshold=[]: percentile calculation for timers (0-100, may be given multiple times)
-persist-count-keys=60: number of flush-intervals to persist count keys
-prefix="": Prefix for all stats
-postfix="": Postfix for all stats
-delete-gauges=true: don't send values to graphite for inactive gauges, as opposed to sending the previous value
-prefix="": Prefix for all stats
-receive-counter="": Metric name for total metrics received per interval
-tcpaddr="": TCP service address, if set
-version=false: print version string
Expand Down
2 changes: 1 addition & 1 deletion version.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
package main

const VERSION = "0.7-alpha"
const VERSION = "0.7"

0 comments on commit 8c57cc2

Please sign in to comment.