icafa / go-ga

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Telegraf plugin: GoogleAnalytics

Plugin arguments:

Configuration:
# Read metrics about google_analytics usage
[[inputs.google_analytics]]
  ## path to keyfile.
  key_file = "./plugins/inputs/google_analytics/clrty-secret.json"
  ## viewid
  view_id = "ga:155849743"

Result for above configuration.

{
	"gatype":"INTEGER", 
	"is_golden":false, 
	"max_val":"118", 
	"min_val":"1", 
	"row_count":20, 
	"totals":"239", 
	"row_metrics":{
		"1", "4", "7", "1", "62", "16", "1", "1", "1", "1", "3", "118", "1", "2", "2", "2", "2", "1", "10", "3"
	}, 
	"name":"ga:sessions"
} 

Description

The GoogleAnalytics input plugin collects data from google analytics api and convert to store on influxDB.

Testing Package

  1. copy this plugin to
    ~/go/src/github.com/influxdata/telegraf/plugins/inputs/google_analytics.
  2. add _ "github.com/influxdata/telegraf/plugins/inputs/google_analytics" at the end of ~/go/src/github.com/influxdata/telegraf/plugins/inputs/all/all.go
  3. cd ~/go/src/github.com/influxdata/telegraf
  4. make
  5. copy clrty-secret.json to ~/go/src/github.com/influxdata/telegraf/plugins/inputs/google_analytics folder.
  6. run below command.
    ./telegraf --config telegraf.conf --test
  7. check all goes well. :) In my case, I got below result.
    gatype,gatype=INTEGER,host=Luks-iMac.local gatype="INTEGER",is_golden=false,max_val="121",min_val="1",name="ga:sessions",row_count=20i,totals="244" 1534186610000000000

About


Languages

Language:Go 100.0%