-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathconfig.xml
More file actions
43 lines (37 loc) · 1.98 KB
/
config.xml
File metadata and controls
43 lines (37 loc) · 1.98 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
<?xml version="1.0" encoding="UTF-8"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://raw.githubusercontent.com/shopware/shopware/trunk/src/Core/System/SystemConfig/Schema/config.xsd">
<card>
<title>Monitoring</title>
<title lang="de-DE">Überwachung</title>
<input-field type="text">
<name>monitorMail</name>
<label>Monitor mail address</label>
<label lang="de-DE">Überwachungsmailadresse</label>
<helpText>This email address is used when you use the CLI command frosh:monitor</helpText>
<helpText lang="de-DE">Diese Mailadresse wird beim Aufruf vom CLI Kommando frosh:monitor genutzt</helpText>
</input-field>
<input-field type="int">
<name>monitorQueueGraceTime</name>
<label>Scheduled queue grace time</label>
<label lang="de-DE">Geplante Karenzzeit der Queue</label>
<helpText>After X minutes a queue is considered stuck / faulty</helpText>
<helpText lang="de-DE">Nach X Minuten gilt eine Queue als festgefahren / fehlerhaft</helpText>
<defaultValue>15</defaultValue>
</input-field>
<input-field type="int">
<name>monitorTaskGraceTime</name>
<label>Scheduled task grace time</label>
<label lang="de-DE">Geplante Karenzzeit der Aufgabe</label>
<helpText>After X minutes a scheduled task is considered stuck / faulty</helpText>
<helpText lang="de-DE">Nach X Minuten gilt eine geplante Aufgabe als festgefahren / fehlerhaft</helpText>
<defaultValue>10</defaultValue>
</input-field>
<input-field type="bool">
<name>healthLogger</name>
<label>Log health warning and error</label>
<label lang="de-DE">Warnungen und Fehler im HealthCheck loggen</label>
<defaultValue>1</defaultValue>
</input-field>
</card>
</config>