-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdynatrace.config.js
61 lines (58 loc) · 1.68 KB
/
dynatrace.config.js
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
module.exports = {
react : {
debug : true,
lifecycle : {
/**
* Decide if you want to see Update Cycles as well
*/
includeUpdate: false,
/**
* Filter for Instrumenting Lifecycle of Components / True = Will be instrumented
*/
instrument: (filename) => {
return false;
}
},
input : {
/**
* Allows you to filter the instrumentation for touch events, refresh events and picker events in certain files
* True = Will be instrumented
*/
instrument: (filename) => {
return true;
}
}
},
android : {
// Those configs are copied 1:1
config : `
dynatrace {
configurations {
defaultConfig {
autoStart {
applicationId 'a0299a68-e245-42e0-85a8-f2c61d5d2857'
beaconUrl 'https://bf07731ogr.bf.dynatrace.com/mbeacon'
}
userOptIn true
agentBehavior.startupLoadBalancing true
}
}
}
`
},
ios : {
// Those configs are copied 1:1
config : `
<key>DTXApplicationID</key>
<string>a0299a68-e245-42e0-85a8-f2c61d5d2857</string>
<key>DTXBeaconURL</key>
<string>https://bf07731ogr.bf.dynatrace.com/mbeacon</string>
<key>DTXLogLevel</key>
<string>ALL</string>
<key>DTXUserOptIn</key>
<true/>
<key>DTXStartupLoadBalancing</key>
<true/>
`
}
}