koder aka kdanilov | 7308462 | 2016-11-16 21:51:08 +0200 | [diff] [blame] | 1 | config: Config - full configuration |
| 2 | nodes: List[NodeInfo] - all nodes |
| 3 | fuel_openstack_creds: OSCreds - openstack creds, discovered from fuel (or None) |
| 4 | openstack_openrc: OSCreds - openrc used for openstack cluster |
| 5 | discovered_nodes: List[NodeInfo] - list of discovered nodes |
| 6 | reused_nodes: List[NodeInfo] - list of reused nodes from cluster |
| 7 | spawned_vm_ids: List[int] - list of openstack VM id's, spawned for test |
koder aka kdanilov | 7308462 | 2016-11-16 21:51:08 +0200 | [diff] [blame] | 8 | info/comment : str - run comment |
| 9 | info/run_uuid : str - run uuid |
koder aka kdanilov | 7022706 | 2016-11-26 23:23:21 +0200 | [diff] [blame^] | 10 | info/run_time : float - run unix time |
| 11 | |
| 12 | # test results |
| 13 | result/{id}/info : TestInfo - test information: name, cluster config, test parameters, etc. |
| 14 | result/{id}/measurement/{node}/{name} : List[float] - measurements data. E.g.: |
| 15 | result/{id}/measurement/node-12/iops - for BW uses iops * block_sz |
| 16 | result/{id}/measurement/node-12/lat_histo |
| 17 | |
| 18 | metric/{node_name}/{dev}/{metric_name} : List[float] - node metrics data. E.g.: |
| 19 | metric/node-22/cpu/load |
| 20 | metric/node-22/sda/read_io |
| 21 | metric/node-22/eth0/data_recv |