OSDN Git Service

Regular updates
[twpd/master.git] / analytics.js.md
1 ---
2 title: Google Analytics's analytics.js
3 category: Analytics
4 layout: 2017/sheet
5 updated: 2017-10-29
6 intro: |
7   Google Analytics's analytics.js is deprecated.
8 ---
9
10 ### Page view
11
12 ```js
13 ga('create', 'UA-XXXX-Y', 'auto')
14 ga('create', 'UA-XXXX-Y', { userId: 'USER_ID' })
15 ```
16
17 ```js
18 ga('send', 'pageview')
19 ga('send', 'pageview', { 'dimension15': 'My custom dimension' })
20 ```
21
22 ### Events
23
24 ```js
25 ga('send', 'event', 'button',  'click', {color: 'red'});
26 ```
27
28 ```js
29 ga('send', 'event', 'button',  'click', 'nav buttons',  4);
30 /*                  ^category  ^action  ^label          ^value */
31 ```
32
33 ### Exceptions
34
35 ```js
36 ga('send', 'exception', {
37   exDescription: 'DatabaseError',
38   exFatal: false,
39   appName: 'myapp',
40   appVersion: '0.1.2'
41 })
42 ```