Brad Bishop | 870c3fc | 2017-05-22 23:23:13 -0400 | [diff] [blame] | 1 | # Example PDM configuration file. |
Brad Bishop | 0e7df13 | 2017-05-23 17:58:12 -0400 | [diff] [blame] | 2 | |
| 3 | - name: example path group |
| 4 | description: > |
Gunnar Mills | 2df09e2 | 2017-07-31 13:30:22 -0500 | [diff] [blame] | 5 | 'A path group is a named collection of D-Bus object |
Brad Bishop | 0e7df13 | 2017-05-23 17:58:12 -0400 | [diff] [blame] | 6 | 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 Bishop | babf3b7 | 2017-05-31 19:44:53 -0400 | [diff] [blame] | 21 | - meta: PATH |
Brad Bishop | 0e7df13 | 2017-05-23 17:58:12 -0400 | [diff] [blame] | 22 | path: /xyz/openbmc_project/testing/inst1 |
Brad Bishop | babf3b7 | 2017-05-31 19:44:53 -0400 | [diff] [blame] | 23 | - meta: PATH |
Brad Bishop | 0e7df13 | 2017-05-23 17:58:12 -0400 | [diff] [blame] | 24 | path: /xyz/openbmc_project/testing/inst2 |
Brad Bishop | babf3b7 | 2017-05-31 19:44:53 -0400 | [diff] [blame] | 25 | - meta: PATH |
Brad Bishop | 0e7df13 | 2017-05-23 17:58:12 -0400 | [diff] [blame] | 26 | path: /xyz/openbmc_project/testing/inst3 |
Brad Bishop | babf3b7 | 2017-05-31 19:44:53 -0400 | [diff] [blame] | 27 | - meta: PATH |
Brad Bishop | 0e7df13 | 2017-05-23 17:58:12 -0400 | [diff] [blame] | 28 | path: /xyz/openbmc_project/testing/inst4 |
Brad Bishop | e73b2c3 | 2017-05-23 18:01:54 -0400 | [diff] [blame] | 29 | |
| 30 | - name: example property group |
| 31 | description: > |
| 32 | 'Like path groups, a property group is a named collection |
Gunnar Mills | 2df09e2 | 2017-07-31 13:30:22 -0500 | [diff] [blame] | 33 | of D-Bus property names and associated metadata. |
Brad Bishop | e73b2c3 | 2017-05-23 18:01:54 -0400 | [diff] [blame] | 34 | |
Gunnar Mills | 2df09e2 | 2017-07-31 13:30:22 -0500 | [diff] [blame] | 35 | Properties in a group must all have the same D-Bus type signature |
Brad Bishop | e73b2c3 | 2017-05-23 18:01:54 -0400 | [diff] [blame] | 36 | and must be explicitly declared.' |
| 37 | class: group |
| 38 | group: property |
| 39 | type: uint32 |
| 40 | members: |
| 41 | - interface: xyz.openbmc_project.Sensor.Value |
Brad Bishop | babf3b7 | 2017-05-31 19:44:53 -0400 | [diff] [blame] | 42 | meta: PROPERTY |
Brad Bishop | e73b2c3 | 2017-05-23 18:01:54 -0400 | [diff] [blame] | 43 | property: ValueA |
| 44 | - interface: xyz.openbmc_project.Sensor.Value |
Brad Bishop | babf3b7 | 2017-05-31 19:44:53 -0400 | [diff] [blame] | 45 | meta: PROPERTY |
Brad Bishop | e73b2c3 | 2017-05-23 18:01:54 -0400 | [diff] [blame] | 46 | property: ValueB |
Brad Bishop | 4b916f1 | 2017-05-23 18:06:38 -0400 | [diff] [blame] | 47 | |
| 48 | - name: example property watch |
| 49 | description: > |
| 50 | 'A property watch instructs PDM to maintain a cache of the state |
Gunnar Mills | 2df09e2 | 2017-07-31 13:30:22 -0500 | [diff] [blame] | 51 | of the specified properties on the specified D-Bus objects. |
Brad Bishop | fccdc39 | 2017-05-22 21:11:09 -0400 | [diff] [blame] | 52 | |
Matthew Barth | ae786ef | 2019-09-04 15:46:13 -0500 | [diff] [blame^] | 53 | An optional set of filters can be applied to the specified properties, |
| 54 | where each property's cache is cleared when it fails to pass |
| 55 | any one filter. The property's cache is cleared so it will not have an |
| 56 | affect on any optional callback that may be triggered. |
| 57 | |
| 58 | An optional callback can be triggered when property values change and |
| 59 | those values pass all filters that may be defined.' |
Brad Bishop | 4b916f1 | 2017-05-23 18:06:38 -0400 | [diff] [blame] | 60 | class: watch |
| 61 | watch: property |
| 62 | paths: example path group |
| 63 | properties: example property group |
Brad Bishop | fccdc39 | 2017-05-22 21:11:09 -0400 | [diff] [blame] | 64 | callback: example count condition |
Matthew Barth | ae786ef | 2019-09-04 15:46:13 -0500 | [diff] [blame^] | 65 | filters: |
| 66 | - op: '>=' |
| 67 | bound: 0 |
| 68 | - op: '<=' |
| 69 | bound: 100 |
Brad Bishop | c1283ae | 2017-05-20 21:42:38 -0400 | [diff] [blame] | 70 | |
| 71 | - name: example journal callback |
| 72 | description: > |
| 73 | 'Callbacks are actions PDM should take when instructed to do so. |
| 74 | |
| 75 | Some callback types refer to a group of paths and group of properties |
| 76 | in a similar fashion as the property watch directive. |
| 77 | |
| 78 | The journal callback logs the specified message to the systemd journal |
| 79 | with the specified severity. |
| 80 | |
| 81 | Additionally, the journal callback will add to the journal key value |
| 82 | pair metadata for each property in the specified property group with |
| 83 | the key being the property element metadata and the value being the |
| 84 | property value.' |
| 85 | class: callback |
| 86 | callback: journal |
| 87 | paths: example path group |
| 88 | properties: example property group |
| 89 | severity: INFO |
| 90 | message: Hello world from PDM! |
Brad Bishop | 49e6617 | 2017-05-23 19:16:21 -0400 | [diff] [blame] | 91 | |
Gunnar Mills | acac602 | 2017-08-14 16:24:55 -0500 | [diff] [blame] | 92 | - name: example elog callback |
| 93 | description: > |
| 94 | 'Callbacks are actions PDM should take when instructed to do so. |
| 95 | |
| 96 | Some callback types refer to a group of paths and group of properties |
| 97 | in a similar fashion as the property watch directive. |
| 98 | |
| 99 | The elog callback logs the elog and elog metadata.' |
| 100 | class: callback |
| 101 | callback: elog |
| 102 | paths: example path group |
| 103 | properties: example property group |
| 104 | error: xyz::openbmc_project::Common::Error::InvalidArgument |
| 105 | metadata: |
| 106 | - name: xyz::openbmc_project::Common::InvalidArgument::ARGUMENT_NAME |
| 107 | value: testing... |
| 108 | type: string |
| 109 | - name: xyz::openbmc_project::Common::InvalidArgument::ARGUMENT_VALUE |
| 110 | value: testing... |
| 111 | type: string |
| 112 | |
Matt Spinler | 3c5318d | 2018-02-19 14:03:05 -0600 | [diff] [blame] | 113 | - name: example elog with metadata capture callback |
| 114 | description: > |
| 115 | 'Callbacks are actions pdm should take when instructed to do so. |
| 116 | |
| 117 | This callback creates an elog, and it will capture the values of the |
| 118 | properties that passed its condition check in the metadata field |
| 119 | (that must be a string type) in the form: |
| 120 | |
| 121 | |path1:property1=value1|path2:property2=value2| |
| 122 | |
| 123 | Note that as this callback depends on the condition that called it to |
| 124 | fill in the result of its checks on each property, this callback should |
| 125 | use the same properties and paths keywords as the condition that calls it. |
| 126 | |
| 127 | Currently an error log with only 1 metadata entry of type string is |
| 128 | supported.' |
| 129 | |
| 130 | class: callback |
| 131 | callback: elog_with_metadata |
| 132 | paths: example path group |
| 133 | properties: example property group |
| 134 | error: xyz::openbmc_project::Common::Callout::Error::Inventory |
| 135 | metadata: xyz::openbmc_project::Common::Callout::Inventory::CALLOUT_INVENTORY_PATH |
| 136 | |
Ratan Gupta | 40e0db4 | 2017-10-13 20:20:43 +0530 | [diff] [blame] | 137 | - name: example event callback |
| 138 | description: > |
| 139 | 'Callbacks are actions PDM should take when instructed to do so. |
| 140 | |
| 141 | Some callback types refer to a group of paths and group of properties |
| 142 | in a similar fashion as the property watch directive. |
| 143 | |
| 144 | The event callback creates the event D-Bus object with the given name |
| 145 | and the event message. |
| 146 | eg /xyz/openbmc_project/events/test/<id>' |
| 147 | class: callback |
| 148 | callback: event |
| 149 | paths: example path group |
| 150 | properties: example property group |
| 151 | eventName: test |
| 152 | eventMessage: "Test configuration changed." |
| 153 | |
Brad Bishop | 0df00be | 2017-05-25 23:38:37 -0400 | [diff] [blame] | 154 | - name: example method callback |
| 155 | description: > |
Gunnar Mills | 2df09e2 | 2017-07-31 13:30:22 -0500 | [diff] [blame] | 156 | 'The method callback invokes the specified D-Bus method.' |
Brad Bishop | 0df00be | 2017-05-25 23:38:37 -0400 | [diff] [blame] | 157 | class: callback |
| 158 | callback: method |
| 159 | service: org.freedesktop.systemd1 |
| 160 | path: /org/freedesktop/systemd1 |
| 161 | interface: org.freedesktop.systemd1.Manager |
| 162 | method: StartUnit |
| 163 | args: |
| 164 | - value: foo.unit |
| 165 | type: string |
| 166 | - value: replace |
| 167 | type: string |
| 168 | |
Matt Spinler | f7a6a46 | 2017-11-01 10:51:19 -0500 | [diff] [blame] | 169 | - name: example resolve callouts callback |
| 170 | description: > |
| 171 | 'The resolve callout callback resolves all error log entries that |
| 172 | are associated with the inventory path specified by setting the |
| 173 | Resolved property in the entries to true. |
| 174 | |
| 175 | A use case could be to watch the Present property on the inventory |
| 176 | item and resolve all errors for it when a new one is plugged in and |
| 177 | the property changes to true.' |
| 178 | |
| 179 | class: callback |
| 180 | callback: resolve callout |
| 181 | paths: example path group |
| 182 | properties: example property group |
| 183 | callout: /xyz/openbmc_project/inventory/system/chassis/motherboard/fan0 |
| 184 | |
Brad Bishop | 49e6617 | 2017-05-23 19:16:21 -0400 | [diff] [blame] | 185 | - name: example callback group |
| 186 | description: > |
| 187 | 'Callbacks groups are simply named collections of other callbacks. |
| 188 | Configuration file directives can only refer to a single callback. |
| 189 | Through use of a group, these configuration file directives can |
| 190 | refer to more than one callback. |
| 191 | |
| 192 | For example for a given event, one may wish to trace multiple |
| 193 | messages to the systemd journal. The journal callback does not |
| 194 | support tracing multiple messages. To do that, define a callback |
Brad Bishop | 3539db6 | 2017-05-30 14:21:12 -0400 | [diff] [blame] | 195 | group composed of multiple journal callbacks.' |
Brad Bishop | 49e6617 | 2017-05-23 19:16:21 -0400 | [diff] [blame] | 196 | |
Brad Bishop | 49e6617 | 2017-05-23 19:16:21 -0400 | [diff] [blame] | 197 | class: callback |
| 198 | callback: group |
| 199 | members: |
| 200 | - example journal callback |
Brad Bishop | 3539db6 | 2017-05-30 14:21:12 -0400 | [diff] [blame] | 201 | - example deferred condition |
Gunnar Mills | acac602 | 2017-08-14 16:24:55 -0500 | [diff] [blame] | 202 | - example elog callback |
Brad Bishop | 4041d72 | 2017-05-21 10:06:07 -0400 | [diff] [blame] | 203 | |
| 204 | - name: example count condition |
| 205 | description: > |
| 206 | 'Conditions or conditional callbacks apply a test prior to invoking |
| 207 | the callback function. |
| 208 | |
| 209 | All conditional callbacks must specify the callback to issue if |
Gunnar Mills | 2df09e2 | 2017-07-31 13:30:22 -0500 | [diff] [blame] | 210 | the condition evaluates. |
Brad Bishop | 4041d72 | 2017-05-21 10:06:07 -0400 | [diff] [blame] | 211 | |
| 212 | The count condition applies the op comparison operator to the value of each |
| 213 | property in the specified groups. It then counts the number of properties |
| 214 | that pass the comparison, and applies another comparison on the result |
| 215 | against the specified bound. |
| 216 | |
| 217 | For example, a callback that requires at least three temperature sensors |
| 218 | in the group to be higher than 115 degrees might use a count condition |
Matt Spinler | c458dee | 2018-02-19 13:09:10 -0600 | [diff] [blame] | 219 | with an op of >, a count op of >=, a bound of 115, and a countbound of 3. |
| 220 | |
| 221 | The optional oneshot parameter defaults to false. If it is specified and |
| 222 | set to true, then the callback will only be called once for as long as the |
| 223 | condition is repeatedly passing. The condition needs to fail at least |
| 224 | once to rearm the callback.' |
Brad Bishop | 4041d72 | 2017-05-21 10:06:07 -0400 | [diff] [blame] | 225 | |
| 226 | class: condition |
| 227 | condition: count |
| 228 | paths: example path group |
| 229 | properties: example property group |
| 230 | callback: example callback group |
| 231 | countop: '>=' |
| 232 | countbound: 3 |
| 233 | op: '>=' |
| 234 | bound: 115 |
Matt Spinler | c458dee | 2018-02-19 13:09:10 -0600 | [diff] [blame] | 235 | oneshot: true |
Brad Bishop | 3539db6 | 2017-05-30 14:21:12 -0400 | [diff] [blame] | 236 | |
| 237 | - name: example deferred condition |
| 238 | description: > |
| 239 | 'Deferred conditions operate in the same fashion as conditional callbacks |
| 240 | with the added behavior that when the condition is tested and is met, |
| 241 | invocation of the callback is deferred by the interval specified. |
| 242 | |
| 243 | When the configured time has elapsed, if the condition has not been reevaluated |
| 244 | the callback is invoked. |
| 245 | |
| 246 | Any condition type can be deferred in this way by setting the defer attribute.' |
| 247 | |
| 248 | class: condition |
| 249 | condition: count |
| 250 | paths: example path group |
| 251 | properties: example property group |
| 252 | defer: 1000us |
| 253 | callback: example callback group |
| 254 | countop: '>=' |
| 255 | countbound: 3 |
| 256 | op: '>=' |
| 257 | bound: 115 |
Marri Devender Rao | 80c7061 | 2018-04-12 09:22:55 -0500 | [diff] [blame] | 258 | |
| 259 | - name: errorlog path group |
| 260 | class: group |
| 261 | group: path |
| 262 | members: |
| 263 | - meta: PATH |
| 264 | path: /xyz/openbmc_project/logging |
| 265 | |
| 266 | - name: pathwatch errorlog |
| 267 | description: > |
| 268 | 'A pathwatch watches on the specified object path goup. |
| 269 | pathcallback are actions PDM should take when instructed to do so.' |
| 270 | |
| 271 | class: pathwatch |
| 272 | pathwatch: path |
| 273 | paths: errorlog path group |
| 274 | pathcallback: create errorlog event |
| 275 | |
| 276 | - name: create errorlog event |
| 277 | description: > |
| 278 | 'eventType specifies the type of the SNMP notification.' |
| 279 | class: pathcallback |
| 280 | pathcallback: eventpath |
| 281 | paths: errorlog path group |
| 282 | eventType: ErrorTrap |