Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jpillora/go-ogle-analytics

Monitor your Go (golang) servers with Google Analytics
https://github.com/jpillora/go-ogle-analytics

Last synced: about 2 months ago
JSON representation

Monitor your Go (golang) servers with Google Analytics

Awesome Lists containing this project

README

        

## Go-ogle Analytics

Track and monitor your Go programs for free with Google Analytics

The `ga` package is essentially a Go wrapper around the [Google Analytics - Measurement Protocol](https://developers.google.com/analytics/devguides/collection/protocol/v1/reference)

**Warning** This package is 95% generated from the [Parameter Reference](https://developers.google.com/analytics/devguides/collection/protocol/v1/parameters) so it may contain bugs - please report them. GA allows "10 million hits per month per property" and will reject requests after that.

### Install

```
go get -v github.com/jpillora/go-ogle-analytics
```

### API

Create a new `client` and `Send()` a 'pageview', 'screenview', 'event', 'transaction', 'item', 'social', 'exception' or 'timing' event.

#### http://godoc.org/github.com/jpillora/go-ogle-analytics

### Quick Usage

1. Log into GA and create a new property and note its Tracker ID

1. Create a `ga-test.go` file

``` go
package main

import "github.com/jpillora/go-ogle-analytics"

func main() {
client, err := ga.NewClient("UA-XXXXXXXX-Y")
if err != nil {
panic(err)
}

err = client.Send(ga.NewEvent("Foo", "Bar").Label("Bazz"))
if err != nil {
panic(err)
}

println("Event fired!")
}
```

1. In GA, go to Real-time > Events

1. Run `ga-test.go`

```
$ go run ga-test.go
Event fired!
```

1. Watch as your event appears

![foo-ga](https://cloud.githubusercontent.com/assets/633843/5979585/023fc580-a8fd-11e4-803a-956610bcc2e2.png)

#### MIT License

Copyright © 2015 <[email protected]>

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
'Software'), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.