| Krzysztof Grobelny | 73da690 | 2020-09-24 13:42:04 +0200 | [diff] [blame] | 1 | option('buildtest', type: 'boolean', value: true, description: 'Build tests') | 
| Patrick Williams | 7d24aa2 | 2025-02-01 08:37:37 -0500 | [diff] [blame] | 2 | option( | 
|  | 3 | 'max-reports', | 
|  | 4 | type: 'integer', | 
|  | 5 | min: 0, | 
|  | 6 | value: 10, | 
|  | 7 | description: 'Max number of Reports', | 
|  | 8 | ) | 
|  | 9 | option( | 
|  | 10 | 'max-reading-parameters', | 
|  | 11 | type: 'integer', | 
|  | 12 | min: 0, | 
|  | 13 | value: 200, | 
|  | 14 | description: 'Max number of metric properties in single report', | 
|  | 15 | ) | 
|  | 16 | option( | 
|  | 17 | 'min-interval', | 
|  | 18 | type: 'integer', | 
|  | 19 | min: 1, | 
|  | 20 | value: 1000, | 
|  | 21 | description: 'Minimal value of interval in milliseconds', | 
|  | 22 | ) | 
|  | 23 | option( | 
|  | 24 | 'max-triggers', | 
|  | 25 | type: 'integer', | 
|  | 26 | min: 0, | 
|  | 27 | value: 10, | 
|  | 28 | description: 'Max number of Triggers', | 
|  | 29 | ) | 
|  | 30 | option( | 
|  | 31 | 'max-dbus-path-length', | 
|  | 32 | type: 'integer', | 
|  | 33 | min: 256, | 
|  | 34 | value: 4095, | 
|  | 35 | description: 'Max length of dbus object path', | 
|  | 36 | ) | 
|  | 37 | option( | 
|  | 38 | 'max-append-limit', | 
|  | 39 | type: 'integer', | 
|  | 40 | min: 0, | 
|  | 41 | value: 256, | 
|  | 42 | description: 'Max AppendLimit value', | 
|  | 43 | ) | 
|  | 44 | option( | 
|  | 45 | 'max-id-name-length', | 
|  | 46 | type: 'integer', | 
|  | 47 | min: 32, | 
|  | 48 | value: 256, | 
|  | 49 | description: 'Max length of any "id" or "name" type field.', | 
|  | 50 | ) | 
|  | 51 | option( | 
|  | 52 | 'max-prefix-length', | 
|  | 53 | type: 'integer', | 
|  | 54 | min: 32, | 
|  | 55 | value: 256, | 
|  | 56 | description: 'Max length of dbus prefix for any object.', | 
|  | 57 | ) | 
| Szymon Dompke | 458a37d | 2022-08-05 10:16:39 +0200 | [diff] [blame] | 58 | option('service-wants', type: 'array', value: []) | 
|  | 59 | option('service-requires', type: 'array', value: []) | 
|  | 60 | option('service-before', type: 'array', value: []) | 
|  | 61 | option('service-after', type: 'array', value: []) |