forked from patrickallaert/php-apm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapm.ini
More file actions
55 lines (52 loc) · 2.32 KB
/
apm.ini
File metadata and controls
55 lines (52 loc) · 2.32 KB
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
; default configuration for php APM module
extension=apm.so
; Whether the extension is globally active or not (overrides apm.event_enabled and apm.slow_request_enabled)
; apm.enabled="1"
; Enable the capture of events such as errors, notices, warnings,...
; apm.event_enabled="1"
; Enable the capture of slow requests
; apm.slow_request_enabled="1"
; Maximum duration in ms a request can take before it gets recorded
; apm.slow_request_duration="100"
; Boolean controlling whether the processing of events by drivers should be deffered at the end of the request
; The default mode is 'On', it sends all the information to the driver once the request is processed to interfere
; as less as possible with the delivery of requests.
; Setting it to "Off" will store the details of events as soon as they happen.
; apm.deffered_processing=On
; Boolean controlling whether the stacktrace should be stored or not
; apm.store_stacktrace=On
; Boolean controlling whether the ip should be stored or not
; apm.store_ip=On
; Boolean controlling whether the cookies should be stored or not
; apm.store_cookies=On
; Boolean controlling whether the POST variables should be stored or not
; apm.store_post=On
; Maximum recursion depth used when dumping a variable
; apm.dump_max_depth=4
; SQLite configuration
; Whether to enable the sqlite driver
; apm.sqlite_enabled=On
; Error reporting level specific to the sqlite driver
; apm.sqlite_error_reporting=E_ALL|E_STRICT
; Path to the SQLite DB directory
; Note: the directory should be readable and writable, SQLite needs to be able to create temporary files in this directory
; apm.sqlite_db_path="/var/php/apm/db"
; Maximum time in ms the extension will keep trying to insert an event into the database
; Setting this to high may slow down your application if you have lot of concurrent events.
; Setting this to low, you may loose some of your concurrent events
; apm.sqlite_max_event_insert_timeout="100"
; MySQL configuration
; Whether to enable the mysql driver
; apm.mysql_enabled=On
; Error reporting level specific to the mysql driver
; apm.mysql_error_reporting=E_ALL|E_STRICT
; Host of the mysql server
; apm.mysql_host=localhost
; Port of the mysql server
; apm.mysql_port=3306
; User of the mysql server
; apm.mysql_user=apm
; Password of the mysql server
; apm.mysql_pass=apm
; Database of the mysql server
; apm.mysql_db=apm