This repository has been archived by the owner on Jun 29, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 90
/
zperfmon.ini
46 lines (34 loc) · 1.57 KB
/
zperfmon.ini
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
; How often to dump profile, default is every 60 seconds
XHPROF_PROBE_INTERVAL=60;
; The ID assigned to the game for tracking
ZPERFMON_GAME_ID=42;
; Name of the game as understood by zperfmon server
ZPERFMON_GAME_NAME="fluid";
; The URL at which zperfmon server is installed
ZPERFMON_UPLOAD_URL="http://hostname.not.set/zperfmon/uploader.php";
; A list of URL parameters, values of which will be prepended to the page name
; Keep this empty if not used
; ZPERFMON_URL_PARAMS="UPARAM1,UPARAM2";
; The constants below are meant for dev setup only
; A list of time slots for which memory profilling will be set on
; ZPERFMON_MEM_SLOTS=48;
; Time by which we start profiling before the memory profiling enabled time slot.
; ZPERFMON_SLOW_PAGE_THRESHOLD=5;
; Variable to figure out if we have to append Hostname to profiles
; Useful for virtual host tagging
; ZPERFMON_APPEND_HOSTNAME=false;
; Per page defined constant which is to be appended to file name
; ZPERFMON_PAGE_PARAMS="PPARAM1,PPARAM2"
; If we dont need the hash data collected, set this to false
; ZPERFMON_HASH_DATA = true;
; Set to true to use file caching instead of APC caching
; DISABLE_APC=false
; A list of pages that must be profiled in a half-hour timeslot
; Format is: <page name 1>:<count 1>,<page name 2>:<count 2>,...
; page name can include url parameter(s) used to key the profile dump.
;
; This works as a guarantee and throttle. Within a fuzziness range, a page
; appearing in the list will not occur more times than specified and will occur
; as many times as specified.
;
; ZPERFMON_PROFILE_CONF="one.php:1,two.php:2"