blob: 264a71e991f9396c8481e100af409e8990d74d01 [file] [log] [blame]
Brad Bishop870c3fc2017-05-22 23:23:13 -04001# Example PDM configuration file.
Brad Bishop0e7df132017-05-23 17:58:12 -04002
3- name: example path group
4 description: >
Gunnar Mills2df09e22017-07-31 13:30:22 -05005 'A path group is a named collection of D-Bus object
Brad Bishop0e7df132017-05-23 17:58:12 -04006 paths and associated metadata. These collections
7 serve only to be referenced by other configuration
8 directives.
9
10 The metadata element has different uses depending
11 on the referencing directive.
12
13 Within a single configuration file path group names
14 must be unique. The same name can appear in multiple
15 configuration files; however, the referencing directive
16 will only search for the group in the same configuration
17 file.'
18 class: group
19 group: path
20 members:
Brad Bishopbabf3b72017-05-31 19:44:53 -040021 - meta: PATH
Brad Bishop0e7df132017-05-23 17:58:12 -040022 path: /xyz/openbmc_project/testing/inst1
Brad Bishopbabf3b72017-05-31 19:44:53 -040023 - meta: PATH
Brad Bishop0e7df132017-05-23 17:58:12 -040024 path: /xyz/openbmc_project/testing/inst2
Brad Bishopbabf3b72017-05-31 19:44:53 -040025 - meta: PATH
Brad Bishop0e7df132017-05-23 17:58:12 -040026 path: /xyz/openbmc_project/testing/inst3
Brad Bishopbabf3b72017-05-31 19:44:53 -040027 - meta: PATH
Brad Bishop0e7df132017-05-23 17:58:12 -040028 path: /xyz/openbmc_project/testing/inst4
Brad Bishope73b2c32017-05-23 18:01:54 -040029
30- name: example property group
31 description: >
32 'Like path groups, a property group is a named collection
Gunnar Mills2df09e22017-07-31 13:30:22 -050033 of D-Bus property names and associated metadata.
Brad Bishope73b2c32017-05-23 18:01:54 -040034
Gunnar Mills2df09e22017-07-31 13:30:22 -050035 Properties in a group must all have the same D-Bus type signature
Brad Bishope73b2c32017-05-23 18:01:54 -040036 and must be explicitly declared.'
37 class: group
38 group: property
39 type: uint32
40 members:
41 - interface: xyz.openbmc_project.Sensor.Value
Brad Bishopbabf3b72017-05-31 19:44:53 -040042 meta: PROPERTY
Brad Bishope73b2c32017-05-23 18:01:54 -040043 property: ValueA
44 - interface: xyz.openbmc_project.Sensor.Value
Brad Bishopbabf3b72017-05-31 19:44:53 -040045 meta: PROPERTY
Brad Bishope73b2c32017-05-23 18:01:54 -040046 property: ValueB
Brad Bishop4b916f12017-05-23 18:06:38 -040047
48- name: example property watch
49 description: >
50 'A property watch instructs PDM to maintain a cache of the state
Gunnar Mills2df09e22017-07-31 13:30:22 -050051 of the specified properties on the specified D-Bus objects.
Brad Bishopfccdc392017-05-22 21:11:09 -040052
53 An optional callback can be triggered when property values change.'
Brad Bishop4b916f12017-05-23 18:06:38 -040054 class: watch
55 watch: property
56 paths: example path group
57 properties: example property group
Brad Bishopfccdc392017-05-22 21:11:09 -040058 callback: example count condition
Brad Bishopc1283ae2017-05-20 21:42:38 -040059
60- name: example journal callback
61 description: >
62 'Callbacks are actions PDM should take when instructed to do so.
63
64 Some callback types refer to a group of paths and group of properties
65 in a similar fashion as the property watch directive.
66
67 The journal callback logs the specified message to the systemd journal
68 with the specified severity.
69
70 Additionally, the journal callback will add to the journal key value
71 pair metadata for each property in the specified property group with
72 the key being the property element metadata and the value being the
73 property value.'
74 class: callback
75 callback: journal
76 paths: example path group
77 properties: example property group
78 severity: INFO
79 message: Hello world from PDM!
Brad Bishop49e66172017-05-23 19:16:21 -040080
Gunnar Millsacac6022017-08-14 16:24:55 -050081- name: example elog callback
82 description: >
83 'Callbacks are actions PDM should take when instructed to do so.
84
85 Some callback types refer to a group of paths and group of properties
86 in a similar fashion as the property watch directive.
87
88 The elog callback logs the elog and elog metadata.'
89 class: callback
90 callback: elog
91 paths: example path group
92 properties: example property group
93 error: xyz::openbmc_project::Common::Error::InvalidArgument
94 metadata:
95 - name: xyz::openbmc_project::Common::InvalidArgument::ARGUMENT_NAME
96 value: testing...
97 type: string
98 - name: xyz::openbmc_project::Common::InvalidArgument::ARGUMENT_VALUE
99 value: testing...
100 type: string
101
Brad Bishop0df00be2017-05-25 23:38:37 -0400102- name: example method callback
103 description: >
Gunnar Mills2df09e22017-07-31 13:30:22 -0500104 'The method callback invokes the specified D-Bus method.'
Brad Bishop0df00be2017-05-25 23:38:37 -0400105 class: callback
106 callback: method
107 service: org.freedesktop.systemd1
108 path: /org/freedesktop/systemd1
109 interface: org.freedesktop.systemd1.Manager
110 method: StartUnit
111 args:
112 - value: foo.unit
113 type: string
114 - value: replace
115 type: string
116
Brad Bishop49e66172017-05-23 19:16:21 -0400117- name: example callback group
118 description: >
119 'Callbacks groups are simply named collections of other callbacks.
120 Configuration file directives can only refer to a single callback.
121 Through use of a group, these configuration file directives can
122 refer to more than one callback.
123
124 For example for a given event, one may wish to trace multiple
125 messages to the systemd journal. The journal callback does not
126 support tracing multiple messages. To do that, define a callback
Brad Bishop3539db62017-05-30 14:21:12 -0400127 group composed of multiple journal callbacks.'
Brad Bishop49e66172017-05-23 19:16:21 -0400128
Brad Bishop49e66172017-05-23 19:16:21 -0400129 class: callback
130 callback: group
131 members:
132 - example journal callback
Brad Bishop3539db62017-05-30 14:21:12 -0400133 - example deferred condition
Gunnar Millsacac6022017-08-14 16:24:55 -0500134 - example elog callback
Brad Bishop4041d722017-05-21 10:06:07 -0400135
136- name: example count condition
137 description: >
138 'Conditions or conditional callbacks apply a test prior to invoking
139 the callback function.
140
141 All conditional callbacks must specify the callback to issue if
Gunnar Mills2df09e22017-07-31 13:30:22 -0500142 the condition evaluates.
Brad Bishop4041d722017-05-21 10:06:07 -0400143
144 The count condition applies the op comparison operator to the value of each
145 property in the specified groups. It then counts the number of properties
146 that pass the comparison, and applies another comparison on the result
147 against the specified bound.
148
149 For example, a callback that requires at least three temperature sensors
150 in the group to be higher than 115 degrees might use a count condition
151 with an op of >, a count op of >=, a bound of 115, and a countbound of 3.'
152
153 class: condition
154 condition: count
155 paths: example path group
156 properties: example property group
157 callback: example callback group
158 countop: '>='
159 countbound: 3
160 op: '>='
161 bound: 115
Brad Bishop3539db62017-05-30 14:21:12 -0400162
163- name: example deferred condition
164 description: >
165 'Deferred conditions operate in the same fashion as conditional callbacks
166 with the added behavior that when the condition is tested and is met,
167 invocation of the callback is deferred by the interval specified.
168
169 When the configured time has elapsed, if the condition has not been reevaluated
170 the callback is invoked.
171
172 Any condition type can be deferred in this way by setting the defer attribute.'
173
174 class: condition
175 condition: count
176 paths: example path group
177 properties: example property group
178 defer: 1000us
179 callback: example callback group
180 countop: '>='
181 countbound: 3
182 op: '>='
183 bound: 115