forked from speedtracker/speedtracker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
speedtracker.yml
94 lines (80 loc) · 5.25 KB
/
speedtracker.yml
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
#
# ____ ________ __
# / __/__ ___ ___ ___/ /_ __/______ _____/ /_____ ____
# _\ \/ _ \/ -_) -_) _ / / / / __/ _ `/ __/ '_/ -_) __/
# ___/ .__/\__/\__/\_,_/ /_/ /_/ \_,_/\__/_/\_\\__/_/
# /_/
# https://speedtracker.org
#
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
# #
# (!) PLEASE NOTE: #
# #
# This config file will be visible to the public eye, unless you're running #
# a private repository. For this reason, we need to obfuscate any sensitive #
# information. #
# #
# Think of a key/password to encrypt your data. You'll need to supply this #
# key with every request you make to SpeedTracker. #
# #
# The encrypt tool (https://speedtracker.org/encrypt) allows you to encrypt #
# any given text with a key of your choice. Read on. #
# #
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
# #
# > encryptionKey (!) Encrypted #
# #
# Open the encrypt tool (https://speedtracker.org/encrypt) and insert your #
# key on the first input field. Leave the "What do you want to encrypt?" #
# field blank and use the result on the encryptionKey field. #
# #
# e.g. The key "foobar123" will generate "0a5f0c0670219dc049" #
# #
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
encryptionKey: "YOUR_ENCRYPTED_KEY"
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
# #
# > wptKey (!) Encrypted #
# #
# Open the encrypt tool (https://speedtracker.org/encrypt), insert your key #
# on the first input field (e.g. foobar123) and your WebPageTest API key as #
# the text to encrypt. Use the result on the wptKey field. #
# #
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
wptKey: "YOUR_ENCRYPTED_WEBPAGETEST_KEY"
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
# #
# > wptUrl #
# #
# The URL for the WebPageTest server to be used in the tests. If you're #
# running a private instance, uncomment the line and insert the URL to your #
# WebPageTest server. You can leave it out if you use the public instance. #
# #
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
#wptUrl: "https://www.webpagetest.org"
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
# #
# > alerts #
# #
# You can define alerts to be triggered when certain events occur (like a #
# metric going over its specified budget). An alert is defined by an id #
# (e.g. emailAlert) and depending on the type (email or slack) it accepts #
# different parameters. #
# #
# Check https://speedtracker.org/docs#alerts for more information. #
# #
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
#alerts:
# emailAlert:
# type: "email"
# recipients: ["ENCRYPTED_EMAIL_ADDRESS"]
# otherEmailAlert:
# type: "email"
# recipients: ["ENCRYPTED_EMAIL_ADDRESS2", "ENCRYPTED_EMAIL_ADDRESS3"]
# slackAlert:
# type: "slack"
# hookUrl: "ENCRYPTED_SLACK_HOOK_URL"
# channel: "#speedtracker"
# username: "SpeedTracker"
# iconEmoji: ":grimacing:"