Cinder: find who created some volume
I am wondering if there is a way to know which user created some cinder volume ?
$ cinder show volume_name
+------------------------------+--------------------------------------+
| Property | Value |
+------------------------------+--------------------------------------+
| attachments | [] |
| availability_zone | nova |
| bootable | false |
| created_at | 2012-27-23T12:15:52.000000 |
| display_description | None |
| display_name | volume_name |
| encrypted | False |
| id | cf510999-666b-4666-6668-c46666752180 |
| metadata | {u'readonly': u'False'} |
| os-vol-tenant-attr:tenant_id | 50002a7327114c2cb97f0d9e0000cdda |
| size | 8 |
| snapshot_id | None |
| source_volid | None |
| status | available |
| volume_type | None |
+------------------------------+--------------------------------------+
This shows only the tenant, and as you can guess the volume name is not very useful either...
Should I just search the logfiles, hoping there is still something in there ?
Edit:
Having a look at openstack code to eventually add the missing piece to show that info. It does not look like it's in python-cinderclient.
Now, if someone could give me a clue about where to look for, I'd be grateful...