-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathmeson.options
35 lines (35 loc) · 946 Bytes
/
meson.options
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
option(
'log-threshold',
type: 'boolean',
description: 'Automatically log SEL records for threshold sensor events',
)
option(
'log-pulse',
type: 'boolean',
description: 'Automatically log events to Redfish for pulse type assert-deassert sensor events',
)
option(
'log-watchdog',
type: 'boolean',
description: 'Automatically log SEL records for watchdog events',
)
option(
'log-alarm',
type: 'boolean',
description: 'Monitor threshold alarm signals and log SEL records for threshold sensor events',
)
option(
'log-host',
type: 'boolean',
description: 'Automatically log SEL records for host error events',
)
option(
'send-to-logger',
type: 'boolean',
description: 'Automatically log events to Redfish for pulse type assert-deassert sensor events',
)
option(
'sel-delete',
type: 'boolean',
description: 'Enables ability to delete SEL entries given a record ID',
)