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 | |
| 53 | An optional callback can be triggered when property values change.' |
Brad Bishop | 4b916f1 | 2017-05-23 18:06:38 -0400 | [diff] [blame] | 54 | class: watch |
| 55 | watch: property |
| 56 | paths: example path group |
| 57 | properties: example property group |
Brad Bishop | fccdc39 | 2017-05-22 21:11:09 -0400 | [diff] [blame] | 58 | callback: example count condition |
Brad Bishop | c1283ae | 2017-05-20 21:42:38 -0400 | [diff] [blame] | 59 | |
| 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 Bishop | 49e6617 | 2017-05-23 19:16:21 -0400 | [diff] [blame] | 80 | |
Gunnar Mills | acac602 | 2017-08-14 16:24:55 -0500 | [diff] [blame] | 81 | - 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 Bishop | 0df00be | 2017-05-25 23:38:37 -0400 | [diff] [blame] | 102 | - name: example method callback |
| 103 | description: > |
Gunnar Mills | 2df09e2 | 2017-07-31 13:30:22 -0500 | [diff] [blame] | 104 | 'The method callback invokes the specified D-Bus method.' |
Brad Bishop | 0df00be | 2017-05-25 23:38:37 -0400 | [diff] [blame] | 105 | 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 | |
Matt Spinler | f7a6a46 | 2017-11-01 10:51:19 -0500 | [diff] [blame] | 117 | - name: example resolve callouts callback |
| 118 | description: > |
| 119 | 'The resolve callout callback resolves all error log entries that |
| 120 | are associated with the inventory path specified by setting the |
| 121 | Resolved property in the entries to true. |
| 122 | |
| 123 | A use case could be to watch the Present property on the inventory |
| 124 | item and resolve all errors for it when a new one is plugged in and |
| 125 | the property changes to true.' |
| 126 | |
| 127 | class: callback |
| 128 | callback: resolve callout |
| 129 | paths: example path group |
| 130 | properties: example property group |
| 131 | callout: /xyz/openbmc_project/inventory/system/chassis/motherboard/fan0 |
| 132 | |
Brad Bishop | 49e6617 | 2017-05-23 19:16:21 -0400 | [diff] [blame] | 133 | - name: example callback group |
| 134 | description: > |
| 135 | 'Callbacks groups are simply named collections of other callbacks. |
| 136 | Configuration file directives can only refer to a single callback. |
| 137 | Through use of a group, these configuration file directives can |
| 138 | refer to more than one callback. |
| 139 | |
| 140 | For example for a given event, one may wish to trace multiple |
| 141 | messages to the systemd journal. The journal callback does not |
| 142 | support tracing multiple messages. To do that, define a callback |
Brad Bishop | 3539db6 | 2017-05-30 14:21:12 -0400 | [diff] [blame] | 143 | group composed of multiple journal callbacks.' |
Brad Bishop | 49e6617 | 2017-05-23 19:16:21 -0400 | [diff] [blame] | 144 | |
Brad Bishop | 49e6617 | 2017-05-23 19:16:21 -0400 | [diff] [blame] | 145 | class: callback |
| 146 | callback: group |
| 147 | members: |
| 148 | - example journal callback |
Brad Bishop | 3539db6 | 2017-05-30 14:21:12 -0400 | [diff] [blame] | 149 | - example deferred condition |
Gunnar Mills | acac602 | 2017-08-14 16:24:55 -0500 | [diff] [blame] | 150 | - example elog callback |
Brad Bishop | 4041d72 | 2017-05-21 10:06:07 -0400 | [diff] [blame] | 151 | |
| 152 | - name: example count condition |
| 153 | description: > |
| 154 | 'Conditions or conditional callbacks apply a test prior to invoking |
| 155 | the callback function. |
| 156 | |
| 157 | All conditional callbacks must specify the callback to issue if |
Gunnar Mills | 2df09e2 | 2017-07-31 13:30:22 -0500 | [diff] [blame] | 158 | the condition evaluates. |
Brad Bishop | 4041d72 | 2017-05-21 10:06:07 -0400 | [diff] [blame] | 159 | |
| 160 | The count condition applies the op comparison operator to the value of each |
| 161 | property in the specified groups. It then counts the number of properties |
| 162 | that pass the comparison, and applies another comparison on the result |
| 163 | against the specified bound. |
| 164 | |
| 165 | For example, a callback that requires at least three temperature sensors |
| 166 | in the group to be higher than 115 degrees might use a count condition |
| 167 | with an op of >, a count op of >=, a bound of 115, and a countbound of 3.' |
| 168 | |
| 169 | class: condition |
| 170 | condition: count |
| 171 | paths: example path group |
| 172 | properties: example property group |
| 173 | callback: example callback group |
| 174 | countop: '>=' |
| 175 | countbound: 3 |
| 176 | op: '>=' |
| 177 | bound: 115 |
Brad Bishop | 3539db6 | 2017-05-30 14:21:12 -0400 | [diff] [blame] | 178 | |
| 179 | - name: example deferred condition |
| 180 | description: > |
| 181 | 'Deferred conditions operate in the same fashion as conditional callbacks |
| 182 | with the added behavior that when the condition is tested and is met, |
| 183 | invocation of the callback is deferred by the interval specified. |
| 184 | |
| 185 | When the configured time has elapsed, if the condition has not been reevaluated |
| 186 | the callback is invoked. |
| 187 | |
| 188 | Any condition type can be deferred in this way by setting the defer attribute.' |
| 189 | |
| 190 | class: condition |
| 191 | condition: count |
| 192 | paths: example path group |
| 193 | properties: example property group |
| 194 | defer: 1000us |
| 195 | callback: example callback group |
| 196 | countop: '>=' |
| 197 | countbound: 3 |
| 198 | op: '>=' |
| 199 | bound: 115 |