Skip to content

roblillack/go-ogle-analytics

 
 

Repository files navigation

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

Warning This package is 95% generated from the Parameter Reference 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.

Quick Usage

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

  2. Create a ga-test.go file

    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!")
    }
  3. In GA, go to Real-time > Events

  4. Run ga-test.go

    $ go run ga-test.go
    Event fired!
    
  5. Watch as your event appears

    foo-ga

MIT License

Copyright © 2015 <dev@jpillora.com>

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.

About

Monitor your Go (golang) servers with Google Analytics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • HTML 74.9%
  • Go 25.1%