forked from a-know/currentvisitor2mackerel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
26 lines (26 loc) · 953 Bytes
/
app.json
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
{
"name": "currentvisitor2mackerel",
"description": "Post current visitor by Google Analytics to mackerel.io",
"env": {
"SERVICE_ACCOUNT_EMAIL": {
"description": "Google Cloud Platform Service Account Email Address.",
"value": "[email protected]"
},
"GOOGLE_API_KEY": {
"description": "Google Cloud Platform Service Account's RSA private key.",
"value": "-----BEGIN RSA PRIVATE KEY-----\nxxxx\n-----END RSA PRIVATE KEY-----"
},
"SITE_AND_VIEW_ID_JSON": {
"description": "Website names (Google Analytics embedded) & Google Analytics View IDs.",
"value": "[{\"hoge-blog\":12345678},{\"fuga-blog\":23456789}]"
},
"MACKEREL_API_KEY": {
"description": "Your organization's api-key of mackerel.io.",
"value": ""
},
"MACKEREL_SERVICE_NAME": {
"description": "Service name in your mackerel organization.",
"value": "hoge-blog"
}
}
}