forked from robmckinnon/rugalytics
-
Notifications
You must be signed in to change notification settings - Fork 1
/
README
291 lines (181 loc) · 8.04 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
Rugalytics is a Ruby API for accessing your Google Analytics Data.
= Warning: API under development
The Rugalytics API is in early development so it may change slightly over time.
It should be in working order, so please give it a test spin! Sometimes
Google changes it's CSV export format, which can break Rugalytics. It's usually
fixed within a week of such occurrences.
The source code is hosted at github. Feel free to fork the code if you have
something to contribute:
http://github.com/robmckinnon/rugalytics
== Install as a Gem
Should be up at rubyforge, so to install:
sudo gem install rugalytics
== Authenticate
Login with your Google Analytics user name and password:
require 'rubygems'
require 'rugalytics'
Rugalytics.login 'username', 'password'
== Obtain Profile
Get profile using account name and profile name:
profile = Rugalytics.find_profile('your_site.com', 'blog.your_site.com')
If account name and profile name are the same:
profile = Rugalytics.find_profile('your_site.com')
== Change Language Settings to English
At present your language setting for your Google Analytics account
must be set to English for Rugalytics to work.
Google: Settings -> Language: choose UK English
OR
Google: Settings -> Language: choose US English
== Get Profile Summary Statistics
Obtaining page views:
profile.pageviews # default period is one month ending today
=> 160600
profile.pageviews :from=>'2007-01-01'
=> 2267550
profile.pageviews :from=>'2007-01-01', :to=>'2007-01-02'
=> 24980
The +pageviews+ method is doing this under the hood:
report = profile.pageviews_report :from=>'2007-01-01', :to=>'2007-01-02'
report.pageviews_total
=> 16600
Using the report you can get +pageviews_by_day+:
report.pageviews_by_day
=> [[Mon, 01 Jan 2007, 8200], [Tue, 02 Jan 2007, 8400]]
In the report, there is a +pageviews_graph+ containing the points:
report.pageviews_graph.sum_of_points
=> 16600
report.pageviews_graph.points_by_day
=> [[Mon, 01 Jan 2007, 8200], [Tue, 02 Jan 2007, 8400]]
== Lots of Reports!
The report name comes from the Google Analytics URL for a CSV report export.
The report name is the rpt parameter from the URL, e.g. 'Pageviews' or
'TrafficSources':
https://www.google.com/analytics/reporting/export?fmt=2&...&&rpt=PageviewsReport&...
https://www.google.com/analytics/reporting/export?fmt=2&...&&rpt=TrafficSourcesReport&...
If you are logged in to the Analytics website, you can find the CSV URL by
clicking on the Export tab, and then mousing over the CSV option.
To discover a list of report names, there's a method on profile:
profile.report_names
=> ["ad_versions_report", "adwords_report", "all_sources_report",
"average_pageviews_report", "bounce_rate_report", "browsers_report",
"campaigns_report", "colors_report", "content_by_title_report",
"content_drilldown_report", "content_report", "dashboard_report",
"depth_of_visit_report", "direct_sources_report", "entrances_report",
"exits_report", "flash_report", "geo_map_report", "hostnames_report",
"java_report", "keyword_position_report", "keywords_report",
"languages_report", "length_of_visit_report", "loyalty_report",
"networks_report", "os_browsers_report", "pageviews_report",
"platforms_report", "recency_report", "referring_sources_report",
"resolutions_report", "search_engines_report", "speeds_report",
"time_on_site_report", "top_content_detail_keywords_report",
"top_content_detail_navigation_report", "top_content_detail_path_report",
"top_content_detail_sources_report", "top_content_report",
"traffic_sources_report", "unique_visitors_report",
"visitor_types_report", "visitors_overview_report", "visits_report"]
== Load a Report
Let's load the TrafficSources report:
report = profile.traffic_sources_report
report.name
=> "Traffic Sources Overview"
report.start_date
=> "28 May 2008"
report.end_date
=> "4 June 2008"
report.source_items.collect{|s| "#{s.sources}: #{s.visits}"}.first
=> "google (organic): 15210"
report.keyword_items.collect{|k| "#{k.keywords}: #{k.visits}"}[1]
=> "oecd nz report summary 2007: 14"
Let's try another report, VisitorsOverview:
report = profile.visitors_overview_report
report.browser_items[1]
=> # Rugalytics::Item @percentage_visits="0.18", @visits="3140", @browser="Firefox"
report.connection_speed_items[3]
=> # Rugalytics::Item @connection_speed="Dialup", @percentage_visits="0.06340057402849197", @visits="1100"
Let's now grab 100 lines of the Networks report:
report = profile.networks_report :rows=>100
report.items.size
=> 100
report.items.first.network_location
=> "telecom xtra"
== Report by URL
Entrance search keywords by URL:
report = profile.top_content_detail_keywords_report(:url=>'/projects/abc')
report.name
=> "Entrance Keywords:,/projects/abc"
report.items.collect{|i| "#{i.keyword} (#{i.unique_pageviews})"}
=> ["project abc (200)", "abc project (110)"]
Pageviews by URL:
report = profile.top_content_detail_report(:url => "/projects/abc")
report.name
=> "Content Detail:,/projects/abc"
report.pageviews_total
=> 179
You can get a content drilldown report, for pages under a certain URL path:
report = profile.content_drilldown_report(:url => "/projects/abc/")
report.name
=> "Content Drilldown,/projects/abc/"
report.items.first
=> # Rugalytics::Item @bounce_rate="0.85", @unique_pageviews="155",
@percentage_exit="0.776536312849162", @time_on_page="165.75",
@pageviews="179", @path="/reports/", @dollar_index="0.0",
@url="http://your_site.com/projects/abc/reports/"
Pageviews by page title:
report = profile.content_by_title_detail_report(:page_title => "Project ABC | Company XYZ")
report.name
=> "Content by Title Detail:,Project ABC | Company XYZ"
report.items.first
=> # Rugalytics::Item @bounce_rate="0.85", @unique_pageviews="1550",
@percentage_exit="0.776536312849162", @time_on_page="165.75",
@pageviews="179", @path="/projects/abc", @dollar_index="0.0",
@url="http://your_site.com/projects/abc"
==Use in Rails
To use from Rails, make a config file rails_root/config/rugalytics.yml
with the following contents:
---
account: your_account_name
profile: your_profile_name
username: your_user_name
password: your_pass_w
Remember to tell your source control system to ignore this file! If you're
using git, this means adding config/rugalytics.yml to your .gitignore
file.
vi .gitignore
config/rugalytics.yml
You can now use Rugalytics from within Rails, and login will be done
automatically, e.g.:
profile = Rugalytics.default_profile
report = profile.top_content_report(:from=>(Date.today - 7) )
top_items_over_week = report.items.sort_by{|i| i.unique_pageviews.to_i}.reverse
==Rugalytics on Rugrat - a Greasemonkey script for Firefox
TO INSTALL:
Create a rugalytics.yml config file containing:
---
account: your_account_name
profile: your_profile_name
username: your_user_name
password: your_pass_w
Run rugalytics executable on console in same directory as rugalytics.yml:
> rugalytics
Add Greasemonkey to Firefox:
https://addons.mozilla.org/firefox/748/
Go to:
http://localhost:8888/
Add rugrat user script:
http://localhost:8888/rugrat.user.js
Configure website for rugrat to run over:
Firefox -> Tools -> Greasemonkey -> Manage User Scripts
-> select rugrat -> press "Add"
-> add your site, e.g. http://your_site.com/*
-> press "Close"
Browse your site!
==Ruby Manor Presentation Slides - Nov 2008
Rugalytics - making a Ruby API to Google Analytics data - presentation slides from Ruby Manor 2008:
http://www.slideshare.net/delineator/rugalytics-ruby-manor-nov-2008-presentation/
==Acknowledgements
Rugalytics started life as a fork of jnunemaker's Statwhore. As the code and
project scope began to diverge significantly from Statwhore, a new project was
initiated. Rugalytics makes use of the googlebase gem to login to Google.
Rugalytics makes use of the morph gem to emerge Ruby class definitions at
runtime based on the contents of the CSV reports from Google Analytics.
==License
See LICENSE for the terms of this software.