-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig_sample.xml
More file actions
54 lines (53 loc) · 2.97 KB
/
config_sample.xml
File metadata and controls
54 lines (53 loc) · 2.97 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
<config>
<param name="baseUrl">https://localhost.localdomain/ActiveQueryListing/AJAXgetaql.php</param>
<param name="dbHost">127.0.0.1</param>
<!-- MS-SQL Instance Name -->
<!-- <param name="dbInstanceName"></param> -->
<param name="dbName">aql_db</param>
<param name="dbPort">3306</param>
<param name="dbUser">aql_app</param>
<param name="dbPass">SomethingComplicated</param>
<param name="timeZone">America/Chicago</param>
<param name="minRefresh">15</param>
<param name="defaultRefresh">60</param>
<param name="issueTrackerBaseUrl">https://somewhere.jira.com/</param>
<!-- Jira Integration (optional) - enables "File Issue" button -->
<!-- Set jiraEnabled to true and configure your Jira instance -->
<param name="jiraEnabled">false</param>
<!-- Database Type Monitoring - enable each type you want to monitor -->
<!-- mysqlEnabled is REQUIRED - AQL's backend database is MySQL -->
<!-- Other types can have optional username/password: {type}Username, {type}Password -->
<param name="mysqlEnabled">true</param>
<param name="innodbclusterEnabled">false</param>
<param name="redisEnabled">false</param>
<param name="mssqlEnabled">false</param>
<param name="oracledbEnabled">false</param>
<param name="cassandraEnabled">false</param>
<param name="datastaxEnabled">false</param>
<param name="mongodbEnabled">false</param>
<param name="rdsEnabled">false</param>
<param name="auroraEnabled">false</param>
<!-- Jira project ID (numeric) - find via REST API or project settings -->
<param name="jiraProjectId"></param>
<!-- Jira issue type ID (numeric) - find via /rest/api/3/issuetype -->
<param name="jiraIssueTypeId"></param>
<!-- Optional: Custom field ID for query hash (e.g., customfield_10100) -->
<!-- Create a text custom field in Jira and put its ID here for duplicate detection -->
<param name="jiraQueryHashFieldId"></param>
<param name="globalStatusDb">performance_schema</param>
<!-- Which DB is the global_status table in? MySQL: performance_schema. MariaDB: information_schema -->
<param name="roQueryPart">@@global.read_only OR @@global.innodb_read_only</param>
<!-- In AWS - this would be "CALL mysql.rds_kill( :pid )" -->
<param name="killStatement">kill :pid</param>
<param name="showSlaveStatement">show all slaves status</param>
<!-- Sample LDAP/AD config - check with your AD admin for the correct values for your company -->
<param name="doLDAPAuthentication">true</param>
<param name="ldapHost">ldaps://ad.mycompany.com/</param>
<param name="ldapDomainName">DC=mycompany,DC=com</param>
<param name="ldapUserGroup">Admins</param>
<param name="ldapUserDomain">mycompany</param>
<!-- Set to false to skip SSL certificate verification (useful for self-signed certs) -->
<param name="ldapVerifyCert">true</param>
<!-- Set to true to show LDAP debug output on screen -->
<param name="ldapDebugConnection">false</param>
</config>