fixed up templates. Added different length sequences and added .exists event
This commit is contained in:
parent
5d802c16b1
commit
65ebc00aae
@ -18,6 +18,17 @@ import mysql.connector
|
||||
import notification_utils as nu
|
||||
|
||||
|
||||
class DateTimeEncoder(json.JSONEncoder):
|
||||
def default(self, obj):
|
||||
if isinstance(obj, datetime.datetime):
|
||||
encoded_object = list(obj.timetuple())[0:7]
|
||||
elif isinstance(obj, datetime.timedelta):
|
||||
encoded_object = (obj.days, obj.seconds, obj.microseconds)
|
||||
else:
|
||||
encoded_object = json.JSONEncoder.default(self, obj)
|
||||
return encoded_object
|
||||
|
||||
|
||||
def get_all_events(cnx, date_range, next_range):
|
||||
# Get all the events (including EOD .exists) for a day
|
||||
|
||||
@ -303,10 +314,9 @@ def scrub(context, struct, parent):
|
||||
now = dateutil.parser.parse(original)
|
||||
time_map[ptemplate % index] = now - start
|
||||
|
||||
|
||||
for stream_type, streams_by_len in patterns.iteritems():
|
||||
output = []
|
||||
for length, stream in streams_by_len.iteritems():
|
||||
output = []
|
||||
context = {'_time_map': {}}
|
||||
for when, uuid, event, rawjson in stream:
|
||||
# All datetimes will be relative to the first event's timestamp.
|
||||
@ -336,7 +346,7 @@ for stream_type, streams_by_len in patterns.iteritems():
|
||||
|
||||
filename = "templates/%s_%d.json" % (stream_type, length)
|
||||
with open(filename, "w") as f:
|
||||
json.dump(output, f, cls=DateTimeEncoder, sort_keys=True, indent=4)
|
||||
json.dump(output, f, cls=DateTimeEncoder, indent=4)
|
||||
|
||||
if 0:
|
||||
timemap = output[0]['time_map']
|
||||
@ -353,4 +363,40 @@ for stream_type, streams_by_len in patterns.iteritems():
|
||||
print json.dumps(x, cls=DateTimeEncoder, sort_keys=True, indent=4)
|
||||
sys.exit(1)
|
||||
|
||||
query = ("SELECT json "
|
||||
"FROM stacktach_rawdata "
|
||||
"WHERE event='compute.instance.exists' AND "
|
||||
" stacktach_rawdata.when BETWEEN %f AND %f " % date_range)
|
||||
|
||||
cursor = cnx.cursor()
|
||||
cursor.execute(query)
|
||||
got = False
|
||||
for rawjson, in cursor:
|
||||
if got:
|
||||
continue
|
||||
queue, full = json.loads(rawjson)
|
||||
payload = full['payload']
|
||||
if full['event_type'] == 'compute.instance.exists':
|
||||
astart = dateutil.parser.parse(payload['audit_period_beginning'])
|
||||
aend = dateutil.parser.parse(payload['audit_period_ending'])
|
||||
if astart.time() != datetime.time.min:
|
||||
continue
|
||||
if aend.time() != datetime.time.min:
|
||||
continue
|
||||
|
||||
context = {'_time_map': {},
|
||||
'_start_time': dateutil.parser.parse(full['timestamp'])}
|
||||
scrub(context, full, None)
|
||||
|
||||
context_map = {'time_map': context['_time_map']}
|
||||
for key in ['uuid', 'xuuid', 'v4', 'v6']:
|
||||
context_map[key] = len(context.get(key, []))
|
||||
|
||||
output = [context_map, full]
|
||||
filename = "templates/eod_exists.json"
|
||||
with open(filename, "w") as f:
|
||||
json.dump(output, f, cls=DateTimeEncoder, indent=4)
|
||||
got = True
|
||||
cursor.close()
|
||||
|
||||
cnx.close()
|
||||
|
2527
templates/compute.instance.create.start_23.json
Normal file
2527
templates/compute.instance.create.start_23.json
Normal file
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
974
templates/compute.instance.delete.start_7.json
Normal file
974
templates/compute.instance.delete.start_7.json
Normal file
@ -0,0 +1,974 @@
|
||||
[
|
||||
{
|
||||
"xuuid": 9,
|
||||
"v4": 14,
|
||||
"time_map": {
|
||||
"[[[[DT_9]]]]": [
|
||||
0,
|
||||
3,
|
||||
962765
|
||||
],
|
||||
"[[[[DT_5]]]]": [
|
||||
-1,
|
||||
86398,
|
||||
713424
|
||||
],
|
||||
"[[[[DT_17]]]]": [
|
||||
-199,
|
||||
84770,
|
||||
268272
|
||||
],
|
||||
"[[[[DT_23]]]]": [
|
||||
0,
|
||||
4,
|
||||
536102
|
||||
],
|
||||
"[[[[DT_16]]]]": [
|
||||
-163,
|
||||
42547,
|
||||
268272
|
||||
],
|
||||
"[[[[DT_20]]]]": [
|
||||
-199,
|
||||
85752,
|
||||
268272
|
||||
],
|
||||
"[[[[DT_2]]]]": [
|
||||
-199,
|
||||
84770,
|
||||
268272
|
||||
],
|
||||
"[[[[DT_15]]]]": [
|
||||
-199,
|
||||
84639,
|
||||
268272
|
||||
],
|
||||
"[[[[DT_7]]]]": [
|
||||
0,
|
||||
0,
|
||||
268272
|
||||
],
|
||||
"[[[[DT_21]]]]": [
|
||||
-199,
|
||||
85943,
|
||||
268272
|
||||
],
|
||||
"[[[[DT_11]]]]": [
|
||||
0,
|
||||
4,
|
||||
268272
|
||||
],
|
||||
"[[[[DT_3]]]]": [
|
||||
-1,
|
||||
86399,
|
||||
268272
|
||||
],
|
||||
"[[[[DT_8]]]]": [
|
||||
0,
|
||||
1,
|
||||
163638
|
||||
],
|
||||
"[[[[DT_14]]]]": [
|
||||
-199,
|
||||
84421,
|
||||
268272
|
||||
],
|
||||
"[[[[DT_10]]]]": [
|
||||
0,
|
||||
3,
|
||||
989039
|
||||
],
|
||||
"[[[[DT_4]]]]": [
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"[[[[DT_22]]]]": [
|
||||
-199,
|
||||
85967,
|
||||
268272
|
||||
],
|
||||
"[[[[DT_1]]]]": [
|
||||
-199,
|
||||
84421,
|
||||
268272
|
||||
],
|
||||
"[[[[DT_13]]]]": [
|
||||
-201,
|
||||
56142,
|
||||
268272
|
||||
],
|
||||
"[[[[DT_6]]]]": [
|
||||
0,
|
||||
0,
|
||||
47717
|
||||
],
|
||||
"[[[[DT_12]]]]": [
|
||||
0,
|
||||
4,
|
||||
463062
|
||||
],
|
||||
"[[[[DT_19]]]]": [
|
||||
-199,
|
||||
85725,
|
||||
268272
|
||||
],
|
||||
"[[[[DT_18]]]]": [
|
||||
0,
|
||||
0,
|
||||
268272
|
||||
],
|
||||
"[[[[DT_0]]]]": [
|
||||
-1,
|
||||
46116,
|
||||
268272
|
||||
]
|
||||
},
|
||||
"uuid": 18,
|
||||
"v6": 2
|
||||
},
|
||||
{
|
||||
"_context_request_id": "req-[[[[UUID_0]]]]",
|
||||
"_context_quota_class": null,
|
||||
"event_type": "compute.instance.update",
|
||||
"_context_auth_token": "[[[[XUUID_0]]]]",
|
||||
"_context_user_id": "[[[[user_id]]]]",
|
||||
"payload": {
|
||||
"state_description": "",
|
||||
"availability_zone": null,
|
||||
"terminated_at": "",
|
||||
"ephemeral_gb": 600,
|
||||
"instance_type_id": 15,
|
||||
"bandwidth": {},
|
||||
"deleted_at": "",
|
||||
"reservation_id": "[[[[reservation_id]]]]",
|
||||
"instance_id": "[[[[UUID_1]]]]",
|
||||
"user_id": "[[[[XUUID_1]]]]",
|
||||
"hostname": "[[[[hostname]]]]",
|
||||
"state": "error",
|
||||
"old_state": null,
|
||||
"old_task_state": null,
|
||||
"metadata": {},
|
||||
"node": "[[[[node]]]]",
|
||||
"ramdisk_id": "",
|
||||
"access_ip_v6": "[[[[V6_0]]]]",
|
||||
"disk_gb": 640,
|
||||
"access_ip_v4": "[[[[V4_0]]]]",
|
||||
"kernel_id": "",
|
||||
"host": "[[[[host]]]]",
|
||||
"display_name": "[[[[display_name]]]]",
|
||||
"image_ref_url": "http://[[[[V4_1]]]]:9292/images/[[[[UUID_2]]]]",
|
||||
"audit_period_beginning": "[[[[DT_0]]]]",
|
||||
"root_gb": 40,
|
||||
"tenant_id": "[[[[tenant_id]]]]",
|
||||
"created_at": "[[[[DT_1]]]]",
|
||||
"launched_at": "[[[[DT_2]]]]",
|
||||
"memory_mb": 61440,
|
||||
"instance_type": "60 GB Performance",
|
||||
"vcpus": 16,
|
||||
"image_meta": {
|
||||
"container_format": "ovf",
|
||||
"min_ram": "1024",
|
||||
"base_image_ref": "[[[[UUID_2]]]]",
|
||||
"org.openstack__1__os_distro": "com.microsoft.server",
|
||||
"image_type": "base",
|
||||
"disk_format": "vhd",
|
||||
"org.openstack__1__architecture": "x64",
|
||||
"auto_disk_config": "False",
|
||||
"min_disk": "40",
|
||||
"cache_in_nova": "True",
|
||||
"os_type": "windows",
|
||||
"org.openstack__1__os_version": "2008.2"
|
||||
},
|
||||
"architecture": "x64",
|
||||
"new_task_state": null,
|
||||
"audit_period_ending": "[[[[DT_3]]]]",
|
||||
"os_type": "windows",
|
||||
"instance_flavor_id": "performance2-60"
|
||||
},
|
||||
"priority": "INFO",
|
||||
"_context_is_admin": true,
|
||||
"_context_user": "[[[[user_id]]]]",
|
||||
"publisher_id": "[[[[publisher_id]]]]",
|
||||
"message_id": "[[[[UUID_3]]]]",
|
||||
"_context_remote_address": "[[[[V4_2]]]]",
|
||||
"_context_roles": [
|
||||
"user-admin",
|
||||
"bofh",
|
||||
"glance",
|
||||
"glance:admin"
|
||||
],
|
||||
"timestamp": "[[[[DT_4]]]]",
|
||||
"_context_timestamp": "[[[[DT_5]]]]",
|
||||
"_unique_id": "[[[[XUUID_2]]]]",
|
||||
"_context_glance_api_servers": null,
|
||||
"_context_project_name": "[[[[tenant_id]]]]",
|
||||
"_context_read_deleted": "no",
|
||||
"_context_tenant": "[[[[tenant_id]]]]",
|
||||
"_context_instance_lock_checked": false,
|
||||
"_context_project_id": "[[[[tenant_id]]]]",
|
||||
"_context_user_name": "[[[[user_id]]]]"
|
||||
},
|
||||
{
|
||||
"_context_request_id": "req-[[[[UUID_0]]]]",
|
||||
"_context_quota_class": null,
|
||||
"event_type": "compute.instance.update",
|
||||
"_context_auth_token": "[[[[XUUID_0]]]]",
|
||||
"_context_user_id": "[[[[user_id]]]]",
|
||||
"payload": {
|
||||
"state_description": "deleting",
|
||||
"availability_zone": null,
|
||||
"terminated_at": "",
|
||||
"ephemeral_gb": 600,
|
||||
"instance_type_id": 15,
|
||||
"bandwidth": {},
|
||||
"deleted_at": "",
|
||||
"reservation_id": "[[[[reservation_id]]]]",
|
||||
"instance_id": "[[[[UUID_1]]]]",
|
||||
"user_id": "[[[[XUUID_1]]]]",
|
||||
"hostname": "[[[[hostname]]]]",
|
||||
"state": "error",
|
||||
"old_state": "error",
|
||||
"old_task_state": null,
|
||||
"metadata": {},
|
||||
"node": "[[[[node]]]]",
|
||||
"ramdisk_id": "",
|
||||
"access_ip_v6": "[[[[V6_0]]]]",
|
||||
"disk_gb": 640,
|
||||
"access_ip_v4": "[[[[V4_0]]]]",
|
||||
"kernel_id": "",
|
||||
"host": "[[[[host]]]]",
|
||||
"display_name": "[[[[display_name]]]]",
|
||||
"image_ref_url": "http://[[[[V4_3]]]]:9292/images/[[[[UUID_2]]]]",
|
||||
"audit_period_beginning": "[[[[DT_0]]]]",
|
||||
"root_gb": 40,
|
||||
"tenant_id": "[[[[tenant_id]]]]",
|
||||
"created_at": "[[[[DT_1]]]]",
|
||||
"launched_at": "[[[[DT_2]]]]",
|
||||
"memory_mb": 61440,
|
||||
"instance_type": "60 GB Performance",
|
||||
"vcpus": 16,
|
||||
"image_meta": {
|
||||
"container_format": "ovf",
|
||||
"min_ram": "1024",
|
||||
"base_image_ref": "[[[[UUID_2]]]]",
|
||||
"org.openstack__1__os_distro": "com.microsoft.server",
|
||||
"image_type": "base",
|
||||
"disk_format": "vhd",
|
||||
"org.openstack__1__architecture": "x64",
|
||||
"auto_disk_config": "False",
|
||||
"min_disk": "40",
|
||||
"cache_in_nova": "True",
|
||||
"os_type": "windows",
|
||||
"org.openstack__1__os_version": "2008.2"
|
||||
},
|
||||
"architecture": "x64",
|
||||
"new_task_state": "deleting",
|
||||
"audit_period_ending": "[[[[DT_3]]]]",
|
||||
"os_type": "windows",
|
||||
"instance_flavor_id": "performance2-60"
|
||||
},
|
||||
"priority": "INFO",
|
||||
"_context_is_admin": true,
|
||||
"_context_user": "[[[[user_id]]]]",
|
||||
"publisher_id": "[[[[publisher_id]]]]",
|
||||
"message_id": "[[[[UUID_4]]]]",
|
||||
"_context_remote_address": "[[[[V4_2]]]]",
|
||||
"_context_roles": [
|
||||
"user-admin",
|
||||
"bofh",
|
||||
"glance",
|
||||
"glance:admin"
|
||||
],
|
||||
"timestamp": "[[[[DT_6]]]]",
|
||||
"_context_timestamp": "[[[[DT_5]]]]",
|
||||
"_unique_id": "[[[[XUUID_3]]]]",
|
||||
"_context_glance_api_servers": null,
|
||||
"_context_project_name": "[[[[tenant_id]]]]",
|
||||
"_context_read_deleted": "no",
|
||||
"_context_tenant": "[[[[tenant_id]]]]",
|
||||
"_context_instance_lock_checked": false,
|
||||
"_context_project_id": "[[[[tenant_id]]]]",
|
||||
"_context_user_name": "[[[[user_id]]]]"
|
||||
},
|
||||
{
|
||||
"_context_request_id": "req-[[[[UUID_0]]]]",
|
||||
"_context_quota_class": null,
|
||||
"event_type": "compute.instance.update",
|
||||
"_context_auth_token": "[[[[XUUID_0]]]]",
|
||||
"_context_user_id": "[[[[user_id]]]]",
|
||||
"payload": {
|
||||
"state_description": "deleting",
|
||||
"availability_zone": null,
|
||||
"terminated_at": "",
|
||||
"ephemeral_gb": 600,
|
||||
"instance_type_id": 15,
|
||||
"bandwidth": {},
|
||||
"deleted_at": "",
|
||||
"reservation_id": "[[[[reservation_id]]]]",
|
||||
"instance_id": "[[[[UUID_1]]]]",
|
||||
"user_id": "[[[[XUUID_1]]]]",
|
||||
"hostname": "[[[[hostname]]]]",
|
||||
"state": "error",
|
||||
"old_state": "error",
|
||||
"old_task_state": null,
|
||||
"metadata": {},
|
||||
"node": "[[[[node]]]]",
|
||||
"ramdisk_id": "",
|
||||
"access_ip_v6": "[[[[V6_0]]]]",
|
||||
"disk_gb": 640,
|
||||
"access_ip_v4": "[[[[V4_0]]]]",
|
||||
"kernel_id": "",
|
||||
"host": "[[[[host]]]]",
|
||||
"display_name": "[[[[display_name]]]]",
|
||||
"image_ref_url": "http://[[[[V4_1]]]]:9292/images/[[[[UUID_2]]]]",
|
||||
"audit_period_beginning": "[[[[DT_0]]]]",
|
||||
"root_gb": 40,
|
||||
"tenant_id": "[[[[tenant_id]]]]",
|
||||
"created_at": "[[[[DT_1]]]]",
|
||||
"launched_at": "[[[[DT_2]]]]",
|
||||
"memory_mb": 61440,
|
||||
"instance_type": "60 GB Performance",
|
||||
"vcpus": 16,
|
||||
"image_meta": {
|
||||
"container_format": "ovf",
|
||||
"min_ram": "1024",
|
||||
"base_image_ref": "[[[[UUID_2]]]]",
|
||||
"org.openstack__1__os_distro": "com.microsoft.server",
|
||||
"image_type": "base",
|
||||
"disk_format": "vhd",
|
||||
"org.openstack__1__architecture": "x64",
|
||||
"auto_disk_config": "False",
|
||||
"min_disk": "40",
|
||||
"cache_in_nova": "True",
|
||||
"os_type": "windows",
|
||||
"org.openstack__1__os_version": "2008.2"
|
||||
},
|
||||
"architecture": "x64",
|
||||
"new_task_state": "deleting",
|
||||
"audit_period_ending": "[[[[DT_7]]]]",
|
||||
"os_type": "windows",
|
||||
"instance_flavor_id": "performance2-60"
|
||||
},
|
||||
"priority": "INFO",
|
||||
"_context_is_admin": true,
|
||||
"_context_user": "[[[[user_id]]]]",
|
||||
"publisher_id": "[[[[publisher_id]]]]",
|
||||
"message_id": "[[[[UUID_5]]]]",
|
||||
"_context_remote_address": "[[[[V4_2]]]]",
|
||||
"_context_roles": [
|
||||
"user-admin",
|
||||
"bofh",
|
||||
"glance",
|
||||
"glance:admin",
|
||||
"admin"
|
||||
],
|
||||
"timestamp": "[[[[DT_8]]]]",
|
||||
"_context_timestamp": "[[[[DT_5]]]]",
|
||||
"_unique_id": "[[[[XUUID_4]]]]",
|
||||
"_context_glance_api_servers": null,
|
||||
"_context_project_name": "[[[[tenant_id]]]]",
|
||||
"_context_read_deleted": "no",
|
||||
"_context_tenant": "[[[[tenant_id]]]]",
|
||||
"_context_instance_lock_checked": false,
|
||||
"_context_project_id": "[[[[tenant_id]]]]",
|
||||
"_context_user_name": "[[[[user_id]]]]"
|
||||
},
|
||||
{
|
||||
"_context_request_id": "req-[[[[UUID_0]]]]",
|
||||
"_context_quota_class": null,
|
||||
"event_type": "compute.instance.delete.start",
|
||||
"_context_auth_token": "[[[[XUUID_0]]]]",
|
||||
"_context_user_id": "[[[[user_id]]]]",
|
||||
"payload": {
|
||||
"state_description": "deleting",
|
||||
"availability_zone": null,
|
||||
"terminated_at": "",
|
||||
"ephemeral_gb": 600,
|
||||
"instance_type_id": 15,
|
||||
"deleted_at": "",
|
||||
"reservation_id": "[[[[reservation_id]]]]",
|
||||
"instance_id": "[[[[UUID_1]]]]",
|
||||
"user_id": "[[[[XUUID_1]]]]",
|
||||
"hostname": "[[[[hostname]]]]",
|
||||
"state": "error",
|
||||
"launched_at": "[[[[DT_2]]]]",
|
||||
"metadata": {},
|
||||
"node": "[[[[node]]]]",
|
||||
"ramdisk_id": "",
|
||||
"access_ip_v6": "[[[[V6_0]]]]",
|
||||
"disk_gb": 640,
|
||||
"access_ip_v4": "[[[[V4_0]]]]",
|
||||
"kernel_id": "",
|
||||
"host": "[[[[host]]]]",
|
||||
"display_name": "[[[[display_name]]]]",
|
||||
"image_ref_url": "http://[[[[V4_4]]]]:9292/images/[[[[UUID_2]]]]",
|
||||
"root_gb": 40,
|
||||
"tenant_id": "[[[[tenant_id]]]]",
|
||||
"created_at": "[[[[DT_1]]]]",
|
||||
"memory_mb": 61440,
|
||||
"instance_type": "60 GB Performance",
|
||||
"vcpus": 16,
|
||||
"image_meta": {
|
||||
"container_format": "ovf",
|
||||
"min_ram": "1024",
|
||||
"base_image_ref": "[[[[UUID_2]]]]",
|
||||
"org.openstack__1__os_distro": "com.microsoft.server",
|
||||
"image_type": "base",
|
||||
"disk_format": "vhd",
|
||||
"org.openstack__1__architecture": "x64",
|
||||
"auto_disk_config": "False",
|
||||
"min_disk": "40",
|
||||
"cache_in_nova": "True",
|
||||
"os_type": "windows",
|
||||
"org.openstack__1__os_version": "2008.2"
|
||||
},
|
||||
"architecture": "x64",
|
||||
"os_type": "windows",
|
||||
"instance_flavor_id": "performance2-60"
|
||||
},
|
||||
"priority": "INFO",
|
||||
"_context_is_admin": true,
|
||||
"_context_user": "[[[[user_id]]]]",
|
||||
"publisher_id": "[[[[publisher_id]]]]",
|
||||
"message_id": "[[[[UUID_6]]]]",
|
||||
"_context_remote_address": "[[[[V4_2]]]]",
|
||||
"_context_roles": [
|
||||
"user-admin",
|
||||
"bofh",
|
||||
"glance",
|
||||
"glance:admin",
|
||||
"admin"
|
||||
],
|
||||
"timestamp": "[[[[DT_9]]]]",
|
||||
"_context_timestamp": "[[[[DT_5]]]]",
|
||||
"_unique_id": "[[[[XUUID_5]]]]",
|
||||
"_context_glance_api_servers": null,
|
||||
"_context_project_name": "[[[[tenant_id]]]]",
|
||||
"_context_read_deleted": "no",
|
||||
"_context_tenant": "[[[[tenant_id]]]]",
|
||||
"_context_instance_lock_checked": false,
|
||||
"_context_project_id": "[[[[tenant_id]]]]",
|
||||
"_context_user_name": "[[[[user_id]]]]"
|
||||
},
|
||||
{
|
||||
"_context_request_id": "req-[[[[UUID_0]]]]",
|
||||
"_context_quota_class": null,
|
||||
"event_type": "compute.instance.shutdown.start",
|
||||
"_context_auth_token": "[[[[XUUID_0]]]]",
|
||||
"_context_user_id": "[[[[user_id]]]]",
|
||||
"payload": {
|
||||
"state_description": "deleting",
|
||||
"availability_zone": null,
|
||||
"terminated_at": "",
|
||||
"ephemeral_gb": 600,
|
||||
"instance_type_id": 15,
|
||||
"deleted_at": "",
|
||||
"reservation_id": "[[[[reservation_id]]]]",
|
||||
"instance_id": "[[[[UUID_1]]]]",
|
||||
"user_id": "[[[[XUUID_1]]]]",
|
||||
"hostname": "[[[[hostname]]]]",
|
||||
"state": "error",
|
||||
"launched_at": "[[[[DT_2]]]]",
|
||||
"metadata": {},
|
||||
"node": "[[[[node]]]]",
|
||||
"ramdisk_id": "",
|
||||
"access_ip_v6": "[[[[V6_0]]]]",
|
||||
"disk_gb": 640,
|
||||
"access_ip_v4": "[[[[V4_0]]]]",
|
||||
"kernel_id": "",
|
||||
"host": "[[[[host]]]]",
|
||||
"display_name": "[[[[display_name]]]]",
|
||||
"image_ref_url": "http://[[[[V4_4]]]]:9292/images/[[[[UUID_2]]]]",
|
||||
"root_gb": 40,
|
||||
"tenant_id": "[[[[tenant_id]]]]",
|
||||
"created_at": "[[[[DT_1]]]]",
|
||||
"memory_mb": 61440,
|
||||
"instance_type": "60 GB Performance",
|
||||
"vcpus": 16,
|
||||
"image_meta": {
|
||||
"container_format": "ovf",
|
||||
"min_ram": "1024",
|
||||
"base_image_ref": "[[[[UUID_2]]]]",
|
||||
"org.openstack__1__os_distro": "com.microsoft.server",
|
||||
"image_type": "base",
|
||||
"disk_format": "vhd",
|
||||
"org.openstack__1__architecture": "x64",
|
||||
"auto_disk_config": "False",
|
||||
"min_disk": "40",
|
||||
"cache_in_nova": "True",
|
||||
"os_type": "windows",
|
||||
"org.openstack__1__os_version": "2008.2"
|
||||
},
|
||||
"architecture": "x64",
|
||||
"os_type": "windows",
|
||||
"instance_flavor_id": "performance2-60"
|
||||
},
|
||||
"priority": "INFO",
|
||||
"_context_is_admin": true,
|
||||
"_context_user": "[[[[user_id]]]]",
|
||||
"publisher_id": "[[[[publisher_id]]]]",
|
||||
"message_id": "[[[[UUID_7]]]]",
|
||||
"_context_remote_address": "[[[[V4_2]]]]",
|
||||
"_context_roles": [
|
||||
"user-admin",
|
||||
"bofh",
|
||||
"glance",
|
||||
"glance:admin",
|
||||
"admin"
|
||||
],
|
||||
"timestamp": "[[[[DT_10]]]]",
|
||||
"_context_timestamp": "[[[[DT_5]]]]",
|
||||
"_unique_id": "[[[[XUUID_6]]]]",
|
||||
"_context_glance_api_servers": null,
|
||||
"_context_project_name": "[[[[tenant_id]]]]",
|
||||
"_context_read_deleted": "no",
|
||||
"_context_tenant": "[[[[tenant_id]]]]",
|
||||
"_context_instance_lock_checked": false,
|
||||
"_context_project_id": "[[[[tenant_id]]]]",
|
||||
"_context_user_name": "[[[[user_id]]]]"
|
||||
},
|
||||
{
|
||||
"_context_request_id": "req-[[[[UUID_0]]]]",
|
||||
"_context_quota_class": null,
|
||||
"event_type": "compute.instance.update",
|
||||
"_context_auth_token": "[[[[XUUID_0]]]]",
|
||||
"_context_user_id": "[[[[user_id]]]]",
|
||||
"payload": {
|
||||
"state_description": "deleting",
|
||||
"availability_zone": null,
|
||||
"terminated_at": "",
|
||||
"ephemeral_gb": 600,
|
||||
"instance_type_id": 15,
|
||||
"bandwidth": {},
|
||||
"deleted_at": "",
|
||||
"reservation_id": "[[[[reservation_id]]]]",
|
||||
"instance_id": "[[[[UUID_1]]]]",
|
||||
"user_id": "[[[[XUUID_1]]]]",
|
||||
"hostname": "[[[[hostname]]]]",
|
||||
"state": "error",
|
||||
"old_state": null,
|
||||
"old_task_state": null,
|
||||
"metadata": {},
|
||||
"node": "[[[[node]]]]",
|
||||
"ramdisk_id": "",
|
||||
"access_ip_v6": "[[[[V6_0]]]]",
|
||||
"disk_gb": 640,
|
||||
"access_ip_v4": "[[[[V4_0]]]]",
|
||||
"kernel_id": "",
|
||||
"host": "[[[[host]]]]",
|
||||
"display_name": "[[[[display_name]]]]",
|
||||
"image_ref_url": "http://[[[[V4_4]]]]:9292/images/[[[[UUID_2]]]]",
|
||||
"audit_period_beginning": "[[[[DT_0]]]]",
|
||||
"root_gb": 40,
|
||||
"tenant_id": "[[[[tenant_id]]]]",
|
||||
"created_at": "[[[[DT_1]]]]",
|
||||
"launched_at": "[[[[DT_2]]]]",
|
||||
"memory_mb": 61440,
|
||||
"instance_type": "60 GB Performance",
|
||||
"vcpus": 16,
|
||||
"image_meta": {
|
||||
"container_format": "ovf",
|
||||
"min_ram": "1024",
|
||||
"base_image_ref": "[[[[UUID_2]]]]",
|
||||
"org.openstack__1__os_distro": "com.microsoft.server",
|
||||
"image_type": "base",
|
||||
"disk_format": "vhd",
|
||||
"org.openstack__1__architecture": "x64",
|
||||
"auto_disk_config": "False",
|
||||
"min_disk": "40",
|
||||
"cache_in_nova": "True",
|
||||
"os_type": "windows",
|
||||
"org.openstack__1__os_version": "2008.2"
|
||||
},
|
||||
"architecture": "x64",
|
||||
"new_task_state": "deleting",
|
||||
"audit_period_ending": "[[[[DT_11]]]]",
|
||||
"os_type": "windows",
|
||||
"instance_flavor_id": "performance2-60"
|
||||
},
|
||||
"priority": "INFO",
|
||||
"_context_is_admin": true,
|
||||
"_context_user": "[[[[user_id]]]]",
|
||||
"publisher_id": "[[[[publisher_id]]]]",
|
||||
"message_id": "[[[[UUID_8]]]]",
|
||||
"_context_remote_address": "[[[[V4_2]]]]",
|
||||
"_context_roles": [
|
||||
"user-admin",
|
||||
"bofh",
|
||||
"glance",
|
||||
"glance:admin",
|
||||
"admin"
|
||||
],
|
||||
"timestamp": "[[[[DT_12]]]]",
|
||||
"_context_timestamp": "[[[[DT_5]]]]",
|
||||
"_unique_id": "[[[[XUUID_7]]]]",
|
||||
"_context_glance_api_servers": null,
|
||||
"_context_project_name": "[[[[tenant_id]]]]",
|
||||
"_context_read_deleted": "no",
|
||||
"_context_tenant": "[[[[tenant_id]]]]",
|
||||
"_context_instance_lock_checked": false,
|
||||
"_context_project_id": "[[[[tenant_id]]]]",
|
||||
"_context_user_name": "[[[[user_id]]]]"
|
||||
},
|
||||
{
|
||||
"_context_request_id": "req-[[[[UUID_0]]]]",
|
||||
"_context_quota_class": null,
|
||||
"event_type": "terminate_instance",
|
||||
"_context_auth_token": "[[[[XUUID_0]]]]",
|
||||
"_context_user_id": "[[[[user_id]]]]",
|
||||
"payload": {
|
||||
"exception": {},
|
||||
"args": {
|
||||
"instance": {
|
||||
"vm_state": "error",
|
||||
"availability_zone": null,
|
||||
"terminated_at": null,
|
||||
"ephemeral_gb": 600,
|
||||
"instance_type_id": 15,
|
||||
"user_data": null,
|
||||
"cleaned": false,
|
||||
"vm_mode": "hvm",
|
||||
"deleted_at": null,
|
||||
"reservation_id": "[[[[reservation_id]]]]",
|
||||
"id": 346688,
|
||||
"security_groups": {
|
||||
"objects": [
|
||||
{
|
||||
"deleted_at": null,
|
||||
"user_id": "[[[[XUUID_1]]]]",
|
||||
"description": "default",
|
||||
"deleted": false,
|
||||
"created_at": "[[[[DT_13]]]]",
|
||||
"updated_at": null,
|
||||
"project_id": "[[[[tenant_id]]]]",
|
||||
"id": 187,
|
||||
"name": "[[[[display_name]]]]"
|
||||
}
|
||||
]
|
||||
},
|
||||
"disable_terminate": false,
|
||||
"root_device_name": "/dev/xvda",
|
||||
"display_name": "[[[[display_name]]]]",
|
||||
"uuid": "[[[[UUID_1]]]]",
|
||||
"default_swap_device": null,
|
||||
"info_cache": {
|
||||
"instance_uuid": "[[[[UUID_1]]]]",
|
||||
"deleted": true,
|
||||
"created_at": "[[[[DT_14]]]]",
|
||||
"updated_at": "[[[[DT_15]]]]",
|
||||
"network_info": [
|
||||
{
|
||||
"ovs_interfaceid": null,
|
||||
"network": {
|
||||
"bridge": "publicnet",
|
||||
"label": "public",
|
||||
"meta": {
|
||||
"original_id": "[[[[UUID_9]]]]",
|
||||
"nvp_managed": false
|
||||
},
|
||||
"id": "[[[[UUID_10]]]]",
|
||||
"subnets": [
|
||||
{
|
||||
"ips": [
|
||||
{
|
||||
"meta": {},
|
||||
"type": "fixed",
|
||||
"floating_ips": [],
|
||||
"version": 6,
|
||||
"address": "[[[[V6_1]]]]"
|
||||
}
|
||||
],
|
||||
"version": 6,
|
||||
"meta": {},
|
||||
"dns": [
|
||||
{
|
||||
"meta": {},
|
||||
"type": "dns",
|
||||
"version": 4,
|
||||
"address": "[[[[V4_5]]]]"
|
||||
},
|
||||
{
|
||||
"meta": {},
|
||||
"type": "dns",
|
||||
"version": 4,
|
||||
"address": "[[[[V4_6]]]]"
|
||||
}
|
||||
],
|
||||
"routes": [],
|
||||
"cidr": "2a00:1a48:7807:101::/64",
|
||||
"gateway": {
|
||||
"meta": {},
|
||||
"type": "gateway",
|
||||
"version": 6,
|
||||
"address": "fe80::def"
|
||||
}
|
||||
},
|
||||
{
|
||||
"ips": [
|
||||
{
|
||||
"meta": {},
|
||||
"type": "fixed",
|
||||
"floating_ips": [],
|
||||
"version": 4,
|
||||
"address": "[[[[V4_0]]]]"
|
||||
}
|
||||
],
|
||||
"version": 4,
|
||||
"meta": {},
|
||||
"dns": [
|
||||
{
|
||||
"meta": {},
|
||||
"type": "dns",
|
||||
"version": 4,
|
||||
"address": "[[[[V4_5]]]]"
|
||||
},
|
||||
{
|
||||
"meta": {},
|
||||
"type": "dns",
|
||||
"version": 4,
|
||||
"address": "[[[[V4_6]]]]"
|
||||
}
|
||||
],
|
||||
"routes": [],
|
||||
"cidr": "[[[[V4_7]]]]/24",
|
||||
"gateway": {
|
||||
"meta": {},
|
||||
"type": "gateway",
|
||||
"version": 4,
|
||||
"address": "[[[[V4_8]]]]"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"devname": "[[[[device_name]]]]",
|
||||
"qbh_params": null,
|
||||
"meta": {},
|
||||
"address": "BC:76:4E:08:43:27",
|
||||
"type": null,
|
||||
"id": "[[[[UUID_11]]]]",
|
||||
"qbg_params": null
|
||||
},
|
||||
{
|
||||
"ovs_interfaceid": null,
|
||||
"network": {
|
||||
"bridge": "servicenet",
|
||||
"label": "private",
|
||||
"meta": {
|
||||
"original_id": "[[[[UUID_12]]]]",
|
||||
"nvp_managed": false
|
||||
},
|
||||
"id": "[[[[UUID_13]]]]",
|
||||
"subnets": [
|
||||
{
|
||||
"ips": [
|
||||
{
|
||||
"meta": {},
|
||||
"type": "fixed",
|
||||
"floating_ips": [],
|
||||
"version": 4,
|
||||
"address": "[[[[V4_9]]]]"
|
||||
}
|
||||
],
|
||||
"version": 4,
|
||||
"meta": {},
|
||||
"dns": [
|
||||
{
|
||||
"meta": {},
|
||||
"type": "dns",
|
||||
"version": 4,
|
||||
"address": "[[[[V4_5]]]]"
|
||||
},
|
||||
{
|
||||
"meta": {},
|
||||
"type": "dns",
|
||||
"version": 4,
|
||||
"address": "[[[[V4_6]]]]"
|
||||
}
|
||||
],
|
||||
"routes": [
|
||||
{
|
||||
"interface": null,
|
||||
"cidr": "[[[[V4_10]]]]/12",
|
||||
"meta": {},
|
||||
"gateway": {
|
||||
"meta": {},
|
||||
"type": "gateway",
|
||||
"version": 4,
|
||||
"address": "[[[[V4_11]]]]"
|
||||
}
|
||||
},
|
||||
{
|
||||
"interface": null,
|
||||
"cidr": "[[[[V4_12]]]]/12",
|
||||
"meta": {},
|
||||
"gateway": {
|
||||
"meta": {},
|
||||
"type": "gateway",
|
||||
"version": 4,
|
||||
"address": "[[[[V4_11]]]]"
|
||||
}
|
||||
}
|
||||
],
|
||||
"cidr": "[[[[V4_13]]]]/20",
|
||||
"gateway": null
|
||||
}
|
||||
]
|
||||
},
|
||||
"devname": "[[[[device_name]]]]",
|
||||
"qbh_params": null,
|
||||
"meta": {},
|
||||
"address": "BC:76:4E:08:92:48",
|
||||
"type": null,
|
||||
"id": "[[[[UUID_14]]]]",
|
||||
"qbg_params": null
|
||||
}
|
||||
],
|
||||
"deleted_at": "[[[[DT_16]]]]"
|
||||
},
|
||||
"hostname": "[[[[hostname]]]]",
|
||||
"launched_on": "c-10-21-128-29",
|
||||
"display_description": "[[[[display_name]]]]",
|
||||
"key_data": null,
|
||||
"deleted": false,
|
||||
"config_drive": "",
|
||||
"power_state": 0,
|
||||
"default_ephemeral_device": null,
|
||||
"progress": 0,
|
||||
"project_id": "[[[[tenant_id]]]]",
|
||||
"launched_at": "[[[[DT_17]]]]",
|
||||
"scheduled_at": "[[[[DT_14]]]]",
|
||||
"node": "[[[[node]]]]",
|
||||
"ramdisk_id": "",
|
||||
"access_ip_v6": "[[[[V6_0]]]]",
|
||||
"access_ip_v4": "[[[[V4_0]]]]",
|
||||
"kernel_id": "",
|
||||
"key_name": null,
|
||||
"updated_at": "[[[[DT_18]]]]",
|
||||
"host": "[[[[host]]]]",
|
||||
"root_gb": 40,
|
||||
"user_id": "[[[[XUUID_1]]]]",
|
||||
"system_metadata": {
|
||||
"instance_type_id": "15",
|
||||
"image_min_ram": "1024",
|
||||
"instance_type_vcpu_weight": "10",
|
||||
"image_cache_in_nova": "True",
|
||||
"instance_type_ephemeral_gb": "600",
|
||||
"image_org.openstack__1__os_version": "2008.2",
|
||||
"image_org.openstack__1__os_distro": "com.microsoft.server",
|
||||
"image_org.openstack__1__architecture": "x64",
|
||||
"image_base_image_ref": "[[[[UUID_2]]]]",
|
||||
"image_os_type": "windows",
|
||||
"instance_type_root_gb": "40",
|
||||
"instance_type_name": "60 GB Performance",
|
||||
"image_image_type": "base",
|
||||
"instance_type_rxtx_factor": "5000.0",
|
||||
"image_auto_disk_config": "False",
|
||||
"instance_type_vcpus": "16",
|
||||
"image_disk_format": "vhd",
|
||||
"instance_type_memory_mb": "61440",
|
||||
"instance_type_swap": "0",
|
||||
"image_min_disk": "40",
|
||||
"instance_type_flavorid": "performance2-60",
|
||||
"image_container_format": "ovf"
|
||||
},
|
||||
"task_state": "deleting",
|
||||
"shutdown_terminate": false,
|
||||
"cell_name": null,
|
||||
"ephemeral_key_uuid": null,
|
||||
"locked": false,
|
||||
"name": "instance-[[[[UUID_1]]]]",
|
||||
"created_at": "[[[[DT_14]]]]",
|
||||
"locked_by": null,
|
||||
"launch_index": 0,
|
||||
"memory_mb": 61440,
|
||||
"vcpus": 16,
|
||||
"image_ref": "[[[[UUID_2]]]]",
|
||||
"architecture": "x64",
|
||||
"auto_disk_config": false,
|
||||
"os_type": "windows",
|
||||
"metadata": {}
|
||||
},
|
||||
"self": null,
|
||||
"context": {
|
||||
"project_name": "[[[[tenant_id]]]]",
|
||||
"user_id": "[[[[user_id]]]]",
|
||||
"roles": [
|
||||
"user-admin",
|
||||
"bofh",
|
||||
"glance",
|
||||
"glance:admin",
|
||||
"admin"
|
||||
],
|
||||
"_read_deleted": "no",
|
||||
"timestamp": "[[[[DT_5]]]]",
|
||||
"auth_token": "[[[[XUUID_0]]]]",
|
||||
"remote_address": "[[[[V4_2]]]]",
|
||||
"quota_class": null,
|
||||
"is_admin": true,
|
||||
"glance_api_servers": null,
|
||||
"request_id": "req-[[[[UUID_0]]]]",
|
||||
"instance_lock_checked": false,
|
||||
"project_id": "[[[[tenant_id]]]]",
|
||||
"user_name": "[[[[user_id]]]]"
|
||||
},
|
||||
"bdms": [
|
||||
{
|
||||
"instance_uuid": "[[[[UUID_1]]]]",
|
||||
"virtual_name": null,
|
||||
"no_device": null,
|
||||
"created_at": "[[[[DT_19]]]]",
|
||||
"snapshot_id": null,
|
||||
"updated_at": "[[[[DT_20]]]]",
|
||||
"device_name": "/dev/xvdb",
|
||||
"deleted": 0,
|
||||
"volume_size": null,
|
||||
"volume_id": "[[[[UUID_15]]]]",
|
||||
"id": 13754,
|
||||
"deleted_at": null,
|
||||
"delete_on_termination": false
|
||||
},
|
||||
{
|
||||
"instance_uuid": "[[[[UUID_1]]]]",
|
||||
"virtual_name": null,
|
||||
"no_device": null,
|
||||
"created_at": "[[[[DT_21]]]]",
|
||||
"snapshot_id": null,
|
||||
"updated_at": "[[[[DT_22]]]]",
|
||||
"device_name": "/dev/xvdc",
|
||||
"deleted": 0,
|
||||
"volume_size": null,
|
||||
"volume_id": "[[[[UUID_16]]]]",
|
||||
"id": 13755,
|
||||
"deleted_at": null,
|
||||
"delete_on_termination": false
|
||||
}
|
||||
],
|
||||
"reservations": []
|
||||
}
|
||||
},
|
||||
"priority": "ERROR",
|
||||
"_context_is_admin": true,
|
||||
"_context_user": "[[[[user_id]]]]",
|
||||
"publisher_id": "[[[[publisher_id]]]]",
|
||||
"message_id": "[[[[UUID_17]]]]",
|
||||
"_context_remote_address": "[[[[V4_2]]]]",
|
||||
"_context_roles": [
|
||||
"user-admin",
|
||||
"bofh",
|
||||
"glance",
|
||||
"glance:admin",
|
||||
"admin"
|
||||
],
|
||||
"timestamp": "[[[[DT_23]]]]",
|
||||
"_context_timestamp": "[[[[DT_5]]]]",
|
||||
"_unique_id": "[[[[XUUID_8]]]]",
|
||||
"_context_glance_api_servers": null,
|
||||
"_context_project_name": "[[[[tenant_id]]]]",
|
||||
"_context_read_deleted": "no",
|
||||
"_context_tenant": "[[[[tenant_id]]]]",
|
||||
"_context_instance_lock_checked": false,
|
||||
"_context_project_id": "[[[[tenant_id]]]]",
|
||||
"_context_user_name": "[[[[user_id]]]]"
|
||||
}
|
||||
]
|
File diff suppressed because it is too large
Load Diff
@ -1,9 +1,21 @@
|
||||
[
|
||||
{
|
||||
"xuuid": 4,
|
||||
"v4": 2,
|
||||
"time_map": {
|
||||
"[[[[DT_0]]]]": [
|
||||
"[[[[DT_9]]]]": [
|
||||
0,
|
||||
1,
|
||||
19109
|
||||
],
|
||||
"[[[[DT_5]]]]": [
|
||||
-1,
|
||||
19714,
|
||||
86392,
|
||||
365732
|
||||
],
|
||||
"[[[[DT_7]]]]": [
|
||||
0,
|
||||
0,
|
||||
667761
|
||||
],
|
||||
"[[[[DT_1]]]]": [
|
||||
@ -11,360 +23,348 @@
|
||||
54605,
|
||||
667761
|
||||
],
|
||||
"[[[[DT_2]]]]": [
|
||||
-321,
|
||||
54911,
|
||||
667761
|
||||
],
|
||||
"[[[[DT_3]]]]": [
|
||||
-1,
|
||||
86399,
|
||||
667761
|
||||
],
|
||||
"[[[[DT_4]]]]": [
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"[[[[DT_5]]]]": [
|
||||
-1,
|
||||
86392,
|
||||
365732
|
||||
],
|
||||
"[[[[DT_6]]]]": [
|
||||
0,
|
||||
0,
|
||||
175295
|
||||
],
|
||||
"[[[[DT_7]]]]": [
|
||||
0,
|
||||
0,
|
||||
667761
|
||||
],
|
||||
"[[[[DT_8]]]]": [
|
||||
0,
|
||||
0,
|
||||
990505
|
||||
],
|
||||
"[[[[DT_9]]]]": [
|
||||
"[[[[DT_4]]]]": [
|
||||
0,
|
||||
1,
|
||||
19109
|
||||
0,
|
||||
0
|
||||
],
|
||||
"[[[[DT_6]]]]": [
|
||||
0,
|
||||
0,
|
||||
175295
|
||||
],
|
||||
"[[[[DT_0]]]]": [
|
||||
-1,
|
||||
19714,
|
||||
667761
|
||||
],
|
||||
"[[[[DT_2]]]]": [
|
||||
-321,
|
||||
54911,
|
||||
667761
|
||||
]
|
||||
},
|
||||
"uuid": 7,
|
||||
"v4": 2,
|
||||
"v6": 1,
|
||||
"xuuid": 4
|
||||
"v6": 1
|
||||
},
|
||||
{
|
||||
"_context_auth_token": null,
|
||||
"_context_glance_api_servers": null,
|
||||
"_context_instance_lock_checked": false,
|
||||
"_context_is_admin": true,
|
||||
"_context_project_id": "[[[[tenant_id]]]]",
|
||||
"_context_project_name": "[[[[tenant_id]]]]",
|
||||
"_context_quota_class": null,
|
||||
"_context_read_deleted": "no",
|
||||
"_context_remote_address": null,
|
||||
"_context_request_id": "req-[[[[UUID_0]]]]",
|
||||
"_context_roles": [],
|
||||
"_context_tenant": "[[[[tenant_id]]]]",
|
||||
"_context_timestamp": "[[[[DT_5]]]]",
|
||||
"_context_user": "[[[[user_id]]]]",
|
||||
"_context_user_id": "[[[[user_id]]]]",
|
||||
"_context_user_name": "[[[[user_id]]]]",
|
||||
"_unique_id": "[[[[XUUID_0]]]]",
|
||||
"_context_quota_class": null,
|
||||
"event_type": "compute.instance.update",
|
||||
"message_id": "[[[[UUID_3]]]]",
|
||||
"_context_auth_token": null,
|
||||
"_context_user_id": "[[[[user_id]]]]",
|
||||
"payload": {
|
||||
"access_ip_v4": "[[[[V4_0]]]]",
|
||||
"access_ip_v6": "[[[[V6_0]]]]",
|
||||
"architecture": null,
|
||||
"audit_period_beginning": "[[[[DT_0]]]]",
|
||||
"audit_period_ending": "[[[[DT_3]]]]",
|
||||
"state_description": "powering-off",
|
||||
"availability_zone": null,
|
||||
"terminated_at": "",
|
||||
"ephemeral_gb": 0,
|
||||
"instance_type_id": 5,
|
||||
"bandwidth": {
|
||||
"public": {
|
||||
"bw_in": 537783,
|
||||
"bw_out": 19189871
|
||||
}
|
||||
},
|
||||
"created_at": "[[[[DT_1]]]]",
|
||||
"deleted_at": "",
|
||||
"disk_gb": 160,
|
||||
"display_name": "[[[[display_name]]]]",
|
||||
"ephemeral_gb": 0,
|
||||
"host": "[[[[host]]]]",
|
||||
"hostname": "[[[[hostname]]]]",
|
||||
"image_meta": {
|
||||
"auto_disk_config": "True",
|
||||
"base_image_ref": "[[[[UUID_2]]]]",
|
||||
"cache_in_nova": "True",
|
||||
"container_format": "ovf",
|
||||
"disk_format": "vhd",
|
||||
"image_type": "base",
|
||||
"min_disk": "160",
|
||||
"min_ram": "512",
|
||||
"org.openstack__1__architecture": "x64",
|
||||
"org.openstack__1__os_distro": "com.redhat",
|
||||
"org.openstack__1__os_version": "6.3",
|
||||
"os_distro": "rhel",
|
||||
"os_type": "linux"
|
||||
},
|
||||
"image_ref_url": "http://[[[[V4_1]]]]:9292/images/[[[[UUID_2]]]]",
|
||||
"instance_flavor_id": "5",
|
||||
"reservation_id": "[[[[reservation_id]]]]",
|
||||
"instance_id": "[[[[UUID_1]]]]",
|
||||
"instance_type": "4GB Standard Instance",
|
||||
"instance_type_id": 5,
|
||||
"kernel_id": "",
|
||||
"launched_at": "[[[[DT_2]]]]",
|
||||
"memory_mb": 4096,
|
||||
"metadata": {},
|
||||
"new_task_state": "powering-off",
|
||||
"node": "[[[[node]]]]",
|
||||
"user_id": "[[[[user_id]]]]",
|
||||
"hostname": "[[[[hostname]]]]",
|
||||
"state": "active",
|
||||
"old_state": "active",
|
||||
"old_task_state": null,
|
||||
"os_type": "linux",
|
||||
"ramdisk_id": "",
|
||||
"reservation_id": "[[[[reservation_id]]]]",
|
||||
"root_gb": 160,
|
||||
"state": "active",
|
||||
"state_description": "powering-off",
|
||||
"tenant_id": "[[[[tenant_id]]]]",
|
||||
"terminated_at": "",
|
||||
"user_id": "[[[[user_id]]]]",
|
||||
"vcpus": 2
|
||||
},
|
||||
"priority": "INFO",
|
||||
"publisher_id": "[[[[publisher_id]]]]",
|
||||
"timestamp": "[[[[DT_4]]]]"
|
||||
},
|
||||
{
|
||||
"_context_auth_token": null,
|
||||
"_context_glance_api_servers": null,
|
||||
"_context_instance_lock_checked": false,
|
||||
"_context_is_admin": true,
|
||||
"_context_project_id": "[[[[tenant_id]]]]",
|
||||
"_context_project_name": "[[[[tenant_id]]]]",
|
||||
"_context_quota_class": null,
|
||||
"_context_read_deleted": "no",
|
||||
"_context_remote_address": null,
|
||||
"_context_request_id": "req-[[[[UUID_0]]]]",
|
||||
"_context_roles": [],
|
||||
"_context_tenant": "[[[[tenant_id]]]]",
|
||||
"_context_timestamp": "[[[[DT_5]]]]",
|
||||
"_context_user": "[[[[user_id]]]]",
|
||||
"_context_user_id": "[[[[user_id]]]]",
|
||||
"_context_user_name": "[[[[user_id]]]]",
|
||||
"_unique_id": "[[[[XUUID_1]]]]",
|
||||
"event_type": "compute.instance.power_off.start",
|
||||
"message_id": "[[[[UUID_4]]]]",
|
||||
"payload": {
|
||||
"access_ip_v4": "[[[[V4_0]]]]",
|
||||
"access_ip_v6": "[[[[V6_0]]]]",
|
||||
"architecture": null,
|
||||
"availability_zone": null,
|
||||
"created_at": "[[[[DT_1]]]]",
|
||||
"deleted_at": "",
|
||||
"disk_gb": 160,
|
||||
"display_name": "[[[[display_name]]]]",
|
||||
"ephemeral_gb": 0,
|
||||
"host": "[[[[host]]]]",
|
||||
"hostname": "[[[[hostname]]]]",
|
||||
"image_meta": {
|
||||
"auto_disk_config": "True",
|
||||
"base_image_ref": "[[[[UUID_2]]]]",
|
||||
"cache_in_nova": "True",
|
||||
"container_format": "ovf",
|
||||
"disk_format": "vhd",
|
||||
"image_type": "base",
|
||||
"min_disk": "160",
|
||||
"min_ram": "512",
|
||||
"org.openstack__1__architecture": "x64",
|
||||
"org.openstack__1__os_distro": "com.redhat",
|
||||
"org.openstack__1__os_version": "6.3",
|
||||
"os_distro": "rhel",
|
||||
"os_type": "linux"
|
||||
},
|
||||
"image_ref_url": "http://[[[[V4_1]]]]:9292/images/[[[[UUID_2]]]]",
|
||||
"instance_flavor_id": "5",
|
||||
"instance_id": "[[[[UUID_1]]]]",
|
||||
"instance_type": "4GB Standard Instance",
|
||||
"instance_type_id": 5,
|
||||
"kernel_id": "",
|
||||
"launched_at": "[[[[DT_2]]]]",
|
||||
"memory_mb": 4096,
|
||||
"metadata": {},
|
||||
"node": "[[[[node]]]]",
|
||||
"os_type": "linux",
|
||||
"ramdisk_id": "",
|
||||
"reservation_id": "[[[[reservation_id]]]]",
|
||||
"access_ip_v6": "[[[[V6_0]]]]",
|
||||
"disk_gb": 160,
|
||||
"access_ip_v4": "[[[[V4_0]]]]",
|
||||
"kernel_id": "",
|
||||
"host": "[[[[host]]]]",
|
||||
"display_name": "[[[[display_name]]]]",
|
||||
"image_ref_url": "http://[[[[V4_1]]]]:9292/images/[[[[UUID_2]]]]",
|
||||
"audit_period_beginning": "[[[[DT_0]]]]",
|
||||
"root_gb": 160,
|
||||
"state": "active",
|
||||
"state_description": "powering-off",
|
||||
"tenant_id": "[[[[tenant_id]]]]",
|
||||
"terminated_at": "",
|
||||
"user_id": "[[[[user_id]]]]",
|
||||
"vcpus": 2
|
||||
"created_at": "[[[[DT_1]]]]",
|
||||
"launched_at": "[[[[DT_2]]]]",
|
||||
"memory_mb": 4096,
|
||||
"instance_type": "4GB Standard Instance",
|
||||
"vcpus": 2,
|
||||
"image_meta": {
|
||||
"container_format": "ovf",
|
||||
"min_ram": "512",
|
||||
"base_image_ref": "[[[[UUID_2]]]]",
|
||||
"os_distro": "rhel",
|
||||
"org.openstack__1__os_distro": "com.redhat",
|
||||
"image_type": "base",
|
||||
"disk_format": "vhd",
|
||||
"org.openstack__1__architecture": "x64",
|
||||
"auto_disk_config": "True",
|
||||
"min_disk": "160",
|
||||
"cache_in_nova": "True",
|
||||
"os_type": "linux",
|
||||
"org.openstack__1__os_version": "6.3"
|
||||
},
|
||||
"architecture": null,
|
||||
"new_task_state": "powering-off",
|
||||
"audit_period_ending": "[[[[DT_3]]]]",
|
||||
"os_type": "linux",
|
||||
"instance_flavor_id": "5"
|
||||
},
|
||||
"priority": "INFO",
|
||||
"_context_is_admin": true,
|
||||
"_context_user": "[[[[user_id]]]]",
|
||||
"publisher_id": "[[[[publisher_id]]]]",
|
||||
"timestamp": "[[[[DT_6]]]]"
|
||||
"message_id": "[[[[UUID_3]]]]",
|
||||
"_context_remote_address": null,
|
||||
"_context_roles": [],
|
||||
"timestamp": "[[[[DT_4]]]]",
|
||||
"_context_timestamp": "[[[[DT_5]]]]",
|
||||
"_unique_id": "[[[[XUUID_0]]]]",
|
||||
"_context_glance_api_servers": null,
|
||||
"_context_project_name": "[[[[tenant_id]]]]",
|
||||
"_context_read_deleted": "no",
|
||||
"_context_tenant": "[[[[tenant_id]]]]",
|
||||
"_context_instance_lock_checked": false,
|
||||
"_context_project_id": "[[[[tenant_id]]]]",
|
||||
"_context_user_name": "[[[[user_id]]]]"
|
||||
},
|
||||
{
|
||||
"_context_auth_token": null,
|
||||
"_context_glance_api_servers": null,
|
||||
"_context_instance_lock_checked": false,
|
||||
"_context_is_admin": true,
|
||||
"_context_project_id": "[[[[tenant_id]]]]",
|
||||
"_context_project_name": "[[[[tenant_id]]]]",
|
||||
"_context_quota_class": null,
|
||||
"_context_read_deleted": "no",
|
||||
"_context_remote_address": null,
|
||||
"_context_request_id": "req-[[[[UUID_0]]]]",
|
||||
"_context_roles": [],
|
||||
"_context_tenant": "[[[[tenant_id]]]]",
|
||||
"_context_timestamp": "[[[[DT_5]]]]",
|
||||
"_context_user": "[[[[user_id]]]]",
|
||||
"_context_quota_class": null,
|
||||
"event_type": "compute.instance.power_off.start",
|
||||
"_context_auth_token": null,
|
||||
"_context_user_id": "[[[[user_id]]]]",
|
||||
"_context_user_name": "[[[[user_id]]]]",
|
||||
"_unique_id": "[[[[XUUID_2]]]]",
|
||||
"event_type": "compute.instance.update",
|
||||
"message_id": "[[[[UUID_5]]]]",
|
||||
"payload": {
|
||||
"access_ip_v4": "[[[[V4_0]]]]",
|
||||
"access_ip_v6": "[[[[V6_0]]]]",
|
||||
"architecture": null,
|
||||
"audit_period_beginning": "[[[[DT_0]]]]",
|
||||
"audit_period_ending": "[[[[DT_7]]]]",
|
||||
"state_description": "powering-off",
|
||||
"availability_zone": null,
|
||||
"terminated_at": "",
|
||||
"ephemeral_gb": 0,
|
||||
"instance_type_id": 5,
|
||||
"deleted_at": "",
|
||||
"reservation_id": "[[[[reservation_id]]]]",
|
||||
"instance_id": "[[[[UUID_1]]]]",
|
||||
"user_id": "[[[[user_id]]]]",
|
||||
"hostname": "[[[[hostname]]]]",
|
||||
"state": "active",
|
||||
"launched_at": "[[[[DT_2]]]]",
|
||||
"metadata": {},
|
||||
"node": "[[[[node]]]]",
|
||||
"ramdisk_id": "",
|
||||
"access_ip_v6": "[[[[V6_0]]]]",
|
||||
"disk_gb": 160,
|
||||
"access_ip_v4": "[[[[V4_0]]]]",
|
||||
"kernel_id": "",
|
||||
"host": "[[[[host]]]]",
|
||||
"display_name": "[[[[display_name]]]]",
|
||||
"image_ref_url": "http://[[[[V4_1]]]]:9292/images/[[[[UUID_2]]]]",
|
||||
"root_gb": 160,
|
||||
"tenant_id": "[[[[tenant_id]]]]",
|
||||
"created_at": "[[[[DT_1]]]]",
|
||||
"memory_mb": 4096,
|
||||
"instance_type": "4GB Standard Instance",
|
||||
"vcpus": 2,
|
||||
"image_meta": {
|
||||
"container_format": "ovf",
|
||||
"min_ram": "512",
|
||||
"base_image_ref": "[[[[UUID_2]]]]",
|
||||
"os_distro": "rhel",
|
||||
"org.openstack__1__os_distro": "com.redhat",
|
||||
"image_type": "base",
|
||||
"disk_format": "vhd",
|
||||
"org.openstack__1__architecture": "x64",
|
||||
"auto_disk_config": "True",
|
||||
"min_disk": "160",
|
||||
"cache_in_nova": "True",
|
||||
"os_type": "linux",
|
||||
"org.openstack__1__os_version": "6.3"
|
||||
},
|
||||
"architecture": null,
|
||||
"os_type": "linux",
|
||||
"instance_flavor_id": "5"
|
||||
},
|
||||
"priority": "INFO",
|
||||
"_context_is_admin": true,
|
||||
"_context_user": "[[[[user_id]]]]",
|
||||
"publisher_id": "[[[[publisher_id]]]]",
|
||||
"message_id": "[[[[UUID_4]]]]",
|
||||
"_context_remote_address": null,
|
||||
"_context_roles": [],
|
||||
"timestamp": "[[[[DT_6]]]]",
|
||||
"_context_timestamp": "[[[[DT_5]]]]",
|
||||
"_unique_id": "[[[[XUUID_1]]]]",
|
||||
"_context_glance_api_servers": null,
|
||||
"_context_project_name": "[[[[tenant_id]]]]",
|
||||
"_context_read_deleted": "no",
|
||||
"_context_tenant": "[[[[tenant_id]]]]",
|
||||
"_context_instance_lock_checked": false,
|
||||
"_context_project_id": "[[[[tenant_id]]]]",
|
||||
"_context_user_name": "[[[[user_id]]]]"
|
||||
},
|
||||
{
|
||||
"_context_request_id": "req-[[[[UUID_0]]]]",
|
||||
"_context_quota_class": null,
|
||||
"event_type": "compute.instance.update",
|
||||
"_context_auth_token": null,
|
||||
"_context_user_id": "[[[[user_id]]]]",
|
||||
"payload": {
|
||||
"state_description": "",
|
||||
"availability_zone": null,
|
||||
"terminated_at": "",
|
||||
"ephemeral_gb": 0,
|
||||
"instance_type_id": 5,
|
||||
"bandwidth": {
|
||||
"public": {
|
||||
"bw_in": 537783,
|
||||
"bw_out": 19189871
|
||||
}
|
||||
},
|
||||
"created_at": "[[[[DT_1]]]]",
|
||||
"deleted_at": "",
|
||||
"disk_gb": 160,
|
||||
"display_name": "[[[[display_name]]]]",
|
||||
"ephemeral_gb": 0,
|
||||
"host": "[[[[host]]]]",
|
||||
"hostname": "[[[[hostname]]]]",
|
||||
"image_meta": {
|
||||
"auto_disk_config": "True",
|
||||
"base_image_ref": "[[[[UUID_2]]]]",
|
||||
"cache_in_nova": "True",
|
||||
"container_format": "ovf",
|
||||
"disk_format": "vhd",
|
||||
"image_type": "base",
|
||||
"min_disk": "160",
|
||||
"min_ram": "512",
|
||||
"org.openstack__1__architecture": "x64",
|
||||
"org.openstack__1__os_distro": "com.redhat",
|
||||
"org.openstack__1__os_version": "6.3",
|
||||
"os_distro": "rhel",
|
||||
"os_type": "linux"
|
||||
},
|
||||
"image_ref_url": "http://[[[[V4_1]]]]:9292/images/[[[[UUID_2]]]]",
|
||||
"instance_flavor_id": "5",
|
||||
"reservation_id": "[[[[reservation_id]]]]",
|
||||
"instance_id": "[[[[UUID_1]]]]",
|
||||
"instance_type": "4GB Standard Instance",
|
||||
"instance_type_id": 5,
|
||||
"kernel_id": "",
|
||||
"launched_at": "[[[[DT_2]]]]",
|
||||
"memory_mb": 4096,
|
||||
"metadata": {},
|
||||
"new_task_state": null,
|
||||
"node": "[[[[node]]]]",
|
||||
"user_id": "[[[[user_id]]]]",
|
||||
"hostname": "[[[[hostname]]]]",
|
||||
"state": "stopped",
|
||||
"old_state": "active",
|
||||
"old_task_state": "powering-off",
|
||||
"os_type": "linux",
|
||||
"ramdisk_id": "",
|
||||
"reservation_id": "[[[[reservation_id]]]]",
|
||||
"root_gb": 160,
|
||||
"state": "stopped",
|
||||
"state_description": "",
|
||||
"tenant_id": "[[[[tenant_id]]]]",
|
||||
"terminated_at": "",
|
||||
"user_id": "[[[[user_id]]]]",
|
||||
"vcpus": 2
|
||||
},
|
||||
"priority": "INFO",
|
||||
"publisher_id": "[[[[publisher_id]]]]",
|
||||
"timestamp": "[[[[DT_8]]]]"
|
||||
},
|
||||
{
|
||||
"_context_auth_token": null,
|
||||
"_context_glance_api_servers": null,
|
||||
"_context_instance_lock_checked": false,
|
||||
"_context_is_admin": true,
|
||||
"_context_project_id": "[[[[tenant_id]]]]",
|
||||
"_context_project_name": "[[[[tenant_id]]]]",
|
||||
"_context_quota_class": null,
|
||||
"_context_read_deleted": "no",
|
||||
"_context_remote_address": null,
|
||||
"_context_request_id": "req-[[[[UUID_0]]]]",
|
||||
"_context_roles": [],
|
||||
"_context_tenant": "[[[[tenant_id]]]]",
|
||||
"_context_timestamp": "[[[[DT_5]]]]",
|
||||
"_context_user": "[[[[user_id]]]]",
|
||||
"_context_user_id": "[[[[user_id]]]]",
|
||||
"_context_user_name": "[[[[user_id]]]]",
|
||||
"_unique_id": "[[[[XUUID_3]]]]",
|
||||
"event_type": "compute.instance.power_off.end",
|
||||
"message_id": "[[[[UUID_6]]]]",
|
||||
"payload": {
|
||||
"access_ip_v4": "[[[[V4_0]]]]",
|
||||
"access_ip_v6": "[[[[V6_0]]]]",
|
||||
"architecture": null,
|
||||
"availability_zone": null,
|
||||
"created_at": "[[[[DT_1]]]]",
|
||||
"deleted_at": "",
|
||||
"disk_gb": 160,
|
||||
"display_name": "[[[[display_name]]]]",
|
||||
"ephemeral_gb": 0,
|
||||
"host": "[[[[host]]]]",
|
||||
"hostname": "[[[[hostname]]]]",
|
||||
"image_meta": {
|
||||
"auto_disk_config": "True",
|
||||
"base_image_ref": "[[[[UUID_2]]]]",
|
||||
"cache_in_nova": "True",
|
||||
"container_format": "ovf",
|
||||
"disk_format": "vhd",
|
||||
"image_type": "base",
|
||||
"min_disk": "160",
|
||||
"min_ram": "512",
|
||||
"org.openstack__1__architecture": "x64",
|
||||
"org.openstack__1__os_distro": "com.redhat",
|
||||
"org.openstack__1__os_version": "6.3",
|
||||
"os_distro": "rhel",
|
||||
"os_type": "linux"
|
||||
},
|
||||
"image_ref_url": "http://[[[[V4_1]]]]:9292/images/[[[[UUID_2]]]]",
|
||||
"instance_flavor_id": "5",
|
||||
"instance_id": "[[[[UUID_1]]]]",
|
||||
"instance_type": "4GB Standard Instance",
|
||||
"instance_type_id": 5,
|
||||
"kernel_id": "",
|
||||
"launched_at": "[[[[DT_2]]]]",
|
||||
"memory_mb": 4096,
|
||||
"metadata": {},
|
||||
"node": "[[[[node]]]]",
|
||||
"os_type": "linux",
|
||||
"ramdisk_id": "",
|
||||
"reservation_id": "[[[[reservation_id]]]]",
|
||||
"access_ip_v6": "[[[[V6_0]]]]",
|
||||
"disk_gb": 160,
|
||||
"access_ip_v4": "[[[[V4_0]]]]",
|
||||
"kernel_id": "",
|
||||
"host": "[[[[host]]]]",
|
||||
"display_name": "[[[[display_name]]]]",
|
||||
"image_ref_url": "http://[[[[V4_1]]]]:9292/images/[[[[UUID_2]]]]",
|
||||
"audit_period_beginning": "[[[[DT_0]]]]",
|
||||
"root_gb": 160,
|
||||
"state": "stopped",
|
||||
"state_description": "",
|
||||
"tenant_id": "[[[[tenant_id]]]]",
|
||||
"terminated_at": "",
|
||||
"user_id": "[[[[user_id]]]]",
|
||||
"vcpus": 2
|
||||
"created_at": "[[[[DT_1]]]]",
|
||||
"launched_at": "[[[[DT_2]]]]",
|
||||
"memory_mb": 4096,
|
||||
"instance_type": "4GB Standard Instance",
|
||||
"vcpus": 2,
|
||||
"image_meta": {
|
||||
"container_format": "ovf",
|
||||
"min_ram": "512",
|
||||
"base_image_ref": "[[[[UUID_2]]]]",
|
||||
"os_distro": "rhel",
|
||||
"org.openstack__1__os_distro": "com.redhat",
|
||||
"image_type": "base",
|
||||
"disk_format": "vhd",
|
||||
"org.openstack__1__architecture": "x64",
|
||||
"auto_disk_config": "True",
|
||||
"min_disk": "160",
|
||||
"cache_in_nova": "True",
|
||||
"os_type": "linux",
|
||||
"org.openstack__1__os_version": "6.3"
|
||||
},
|
||||
"architecture": null,
|
||||
"new_task_state": null,
|
||||
"audit_period_ending": "[[[[DT_7]]]]",
|
||||
"os_type": "linux",
|
||||
"instance_flavor_id": "5"
|
||||
},
|
||||
"priority": "INFO",
|
||||
"_context_is_admin": true,
|
||||
"_context_user": "[[[[user_id]]]]",
|
||||
"publisher_id": "[[[[publisher_id]]]]",
|
||||
"timestamp": "[[[[DT_9]]]]"
|
||||
"message_id": "[[[[UUID_5]]]]",
|
||||
"_context_remote_address": null,
|
||||
"_context_roles": [],
|
||||
"timestamp": "[[[[DT_8]]]]",
|
||||
"_context_timestamp": "[[[[DT_5]]]]",
|
||||
"_unique_id": "[[[[XUUID_2]]]]",
|
||||
"_context_glance_api_servers": null,
|
||||
"_context_project_name": "[[[[tenant_id]]]]",
|
||||
"_context_read_deleted": "no",
|
||||
"_context_tenant": "[[[[tenant_id]]]]",
|
||||
"_context_instance_lock_checked": false,
|
||||
"_context_project_id": "[[[[tenant_id]]]]",
|
||||
"_context_user_name": "[[[[user_id]]]]"
|
||||
},
|
||||
{
|
||||
"_context_request_id": "req-[[[[UUID_0]]]]",
|
||||
"_context_quota_class": null,
|
||||
"event_type": "compute.instance.power_off.end",
|
||||
"_context_auth_token": null,
|
||||
"_context_user_id": "[[[[user_id]]]]",
|
||||
"payload": {
|
||||
"state_description": "",
|
||||
"availability_zone": null,
|
||||
"terminated_at": "",
|
||||
"ephemeral_gb": 0,
|
||||
"instance_type_id": 5,
|
||||
"deleted_at": "",
|
||||
"reservation_id": "[[[[reservation_id]]]]",
|
||||
"instance_id": "[[[[UUID_1]]]]",
|
||||
"user_id": "[[[[user_id]]]]",
|
||||
"hostname": "[[[[hostname]]]]",
|
||||
"state": "stopped",
|
||||
"launched_at": "[[[[DT_2]]]]",
|
||||
"metadata": {},
|
||||
"node": "[[[[node]]]]",
|
||||
"ramdisk_id": "",
|
||||
"access_ip_v6": "[[[[V6_0]]]]",
|
||||
"disk_gb": 160,
|
||||
"access_ip_v4": "[[[[V4_0]]]]",
|
||||
"kernel_id": "",
|
||||
"host": "[[[[host]]]]",
|
||||
"display_name": "[[[[display_name]]]]",
|
||||
"image_ref_url": "http://[[[[V4_1]]]]:9292/images/[[[[UUID_2]]]]",
|
||||
"root_gb": 160,
|
||||
"tenant_id": "[[[[tenant_id]]]]",
|
||||
"created_at": "[[[[DT_1]]]]",
|
||||
"memory_mb": 4096,
|
||||
"instance_type": "4GB Standard Instance",
|
||||
"vcpus": 2,
|
||||
"image_meta": {
|
||||
"container_format": "ovf",
|
||||
"min_ram": "512",
|
||||
"base_image_ref": "[[[[UUID_2]]]]",
|
||||
"os_distro": "rhel",
|
||||
"org.openstack__1__os_distro": "com.redhat",
|
||||
"image_type": "base",
|
||||
"disk_format": "vhd",
|
||||
"org.openstack__1__architecture": "x64",
|
||||
"auto_disk_config": "True",
|
||||
"min_disk": "160",
|
||||
"cache_in_nova": "True",
|
||||
"os_type": "linux",
|
||||
"org.openstack__1__os_version": "6.3"
|
||||
},
|
||||
"architecture": null,
|
||||
"os_type": "linux",
|
||||
"instance_flavor_id": "5"
|
||||
},
|
||||
"priority": "INFO",
|
||||
"_context_is_admin": true,
|
||||
"_context_user": "[[[[user_id]]]]",
|
||||
"publisher_id": "[[[[publisher_id]]]]",
|
||||
"message_id": "[[[[UUID_6]]]]",
|
||||
"_context_remote_address": null,
|
||||
"_context_roles": [],
|
||||
"timestamp": "[[[[DT_9]]]]",
|
||||
"_context_timestamp": "[[[[DT_5]]]]",
|
||||
"_unique_id": "[[[[XUUID_3]]]]",
|
||||
"_context_glance_api_servers": null,
|
||||
"_context_project_name": "[[[[tenant_id]]]]",
|
||||
"_context_read_deleted": "no",
|
||||
"_context_tenant": "[[[[tenant_id]]]]",
|
||||
"_context_instance_lock_checked": false,
|
||||
"_context_project_id": "[[[[tenant_id]]]]",
|
||||
"_context_user_name": "[[[[user_id]]]]"
|
||||
}
|
||||
]
|
525
templates/compute.instance.power_off.start_5.json
Normal file
525
templates/compute.instance.power_off.start_5.json
Normal file
@ -0,0 +1,525 @@
|
||||
[
|
||||
{
|
||||
"xuuid": 5,
|
||||
"v4": 2,
|
||||
"time_map": {
|
||||
"[[[[DT_9]]]]": [
|
||||
0,
|
||||
0,
|
||||
692470
|
||||
],
|
||||
"[[[[DT_5]]]]": [
|
||||
-1,
|
||||
86395,
|
||||
772059
|
||||
],
|
||||
"[[[[DT_7]]]]": [
|
||||
0,
|
||||
0,
|
||||
222943
|
||||
],
|
||||
"[[[[DT_1]]]]": [
|
||||
-138,
|
||||
18018,
|
||||
225451
|
||||
],
|
||||
"[[[[DT_3]]]]": [
|
||||
-1,
|
||||
86399,
|
||||
225451
|
||||
],
|
||||
"[[[[DT_8]]]]": [
|
||||
0,
|
||||
0,
|
||||
225451
|
||||
],
|
||||
"[[[[DT_10]]]]": [
|
||||
0,
|
||||
0,
|
||||
716113
|
||||
],
|
||||
"[[[[DT_4]]]]": [
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"[[[[DT_6]]]]": [
|
||||
0,
|
||||
0,
|
||||
110368
|
||||
],
|
||||
"[[[[DT_0]]]]": [
|
||||
-1,
|
||||
63337,
|
||||
225451
|
||||
],
|
||||
"[[[[DT_2]]]]": [
|
||||
-136,
|
||||
32365,
|
||||
225451
|
||||
]
|
||||
},
|
||||
"uuid": 10,
|
||||
"v6": 1
|
||||
},
|
||||
{
|
||||
"_context_request_id": "req-[[[[UUID_0]]]]",
|
||||
"_context_quota_class": null,
|
||||
"event_type": "compute.instance.update",
|
||||
"_context_auth_token": null,
|
||||
"_context_user_id": "[[[[user_id]]]]",
|
||||
"payload": {
|
||||
"state_description": "",
|
||||
"availability_zone": null,
|
||||
"terminated_at": "",
|
||||
"ephemeral_gb": 20,
|
||||
"instance_type_id": 10,
|
||||
"bandwidth": {
|
||||
"public": {
|
||||
"bw_in": 38782473,
|
||||
"bw_out": 1240886528
|
||||
},
|
||||
"private": {
|
||||
"bw_in": 2580,
|
||||
"bw_out": 1302
|
||||
}
|
||||
},
|
||||
"deleted_at": "",
|
||||
"reservation_id": "[[[[reservation_id]]]]",
|
||||
"instance_id": "[[[[UUID_1]]]]",
|
||||
"user_id": "[[[[user_id]]]]",
|
||||
"hostname": "[[[[hostname]]]]",
|
||||
"state": "active",
|
||||
"old_state": null,
|
||||
"old_task_state": null,
|
||||
"metadata": {},
|
||||
"node": "[[[[node]]]]",
|
||||
"ramdisk_id": "",
|
||||
"access_ip_v6": "[[[[V6_0]]]]",
|
||||
"disk_gb": 60,
|
||||
"access_ip_v4": "[[[[V4_0]]]]",
|
||||
"kernel_id": "",
|
||||
"host": "[[[[host]]]]",
|
||||
"display_name": "[[[[display_name]]]]",
|
||||
"image_ref_url": "http://[[[[V4_1]]]]:9292/images/[[[[UUID_2]]]]",
|
||||
"audit_period_beginning": "[[[[DT_0]]]]",
|
||||
"root_gb": 40,
|
||||
"tenant_id": "[[[[tenant_id]]]]",
|
||||
"created_at": "[[[[DT_1]]]]",
|
||||
"launched_at": "[[[[DT_2]]]]",
|
||||
"memory_mb": 2048,
|
||||
"instance_type": "2 GB Performance",
|
||||
"vcpus": 2,
|
||||
"image_meta": {
|
||||
"container_format": "ovf",
|
||||
"min_ram": "512",
|
||||
"instance_type_name": "512MB Standard Instance",
|
||||
"base_image_ref": "[[[[UUID_3]]]]",
|
||||
"os_distro": "centos",
|
||||
"org.openstack__1__os_distro": "org.centos",
|
||||
"image_type": "snapshot",
|
||||
"org.openstack__1__os_version": "6.5",
|
||||
"disk_format": "vhd",
|
||||
"instance_type_ephemeral_gb": "0",
|
||||
"org.openstack__1__architecture": "x64",
|
||||
"instance_type_vcpu_weight": "10",
|
||||
"instance_type_root_gb": "20",
|
||||
"instance_type_id": "2",
|
||||
"instance_type_rxtx_factor": "80.0",
|
||||
"min_disk": "40",
|
||||
"instance_type_vcpus": "1",
|
||||
"instance_uuid": "[[[[UUID_4]]]]",
|
||||
"instance_type_memory_mb": "512",
|
||||
"instance_type_swap": "512",
|
||||
"user_id": "[[[[user_id]]]]",
|
||||
"instance_type_flavorid": "2",
|
||||
"auto_disk_config": "True",
|
||||
"os_type": "linux"
|
||||
},
|
||||
"architecture": "x64",
|
||||
"new_task_state": null,
|
||||
"audit_period_ending": "[[[[DT_3]]]]",
|
||||
"os_type": "linux",
|
||||
"instance_flavor_id": "performance1-2"
|
||||
},
|
||||
"priority": "INFO",
|
||||
"_context_is_admin": true,
|
||||
"_context_user": "[[[[user_id]]]]",
|
||||
"publisher_id": "[[[[publisher_id]]]]",
|
||||
"message_id": "[[[[UUID_5]]]]",
|
||||
"_context_remote_address": null,
|
||||
"_context_roles": [],
|
||||
"timestamp": "[[[[DT_4]]]]",
|
||||
"_context_timestamp": "[[[[DT_5]]]]",
|
||||
"_unique_id": "[[[[XUUID_0]]]]",
|
||||
"_context_glance_api_servers": null,
|
||||
"_context_project_name": "[[[[tenant_id]]]]",
|
||||
"_context_read_deleted": "no",
|
||||
"_context_tenant": "[[[[tenant_id]]]]",
|
||||
"_context_instance_lock_checked": false,
|
||||
"_context_project_id": "[[[[tenant_id]]]]",
|
||||
"_context_user_name": "[[[[user_id]]]]"
|
||||
},
|
||||
{
|
||||
"_context_request_id": "req-[[[[UUID_0]]]]",
|
||||
"_context_quota_class": null,
|
||||
"event_type": "compute.instance.update",
|
||||
"_context_auth_token": null,
|
||||
"_context_user_id": "[[[[user_id]]]]",
|
||||
"payload": {
|
||||
"state_description": "powering-off",
|
||||
"availability_zone": null,
|
||||
"terminated_at": "",
|
||||
"ephemeral_gb": 20,
|
||||
"instance_type_id": 10,
|
||||
"bandwidth": {
|
||||
"public": {
|
||||
"bw_in": 38782473,
|
||||
"bw_out": 1240886528
|
||||
},
|
||||
"private": {
|
||||
"bw_in": 2580,
|
||||
"bw_out": 1302
|
||||
}
|
||||
},
|
||||
"deleted_at": "",
|
||||
"reservation_id": "[[[[reservation_id]]]]",
|
||||
"instance_id": "[[[[UUID_1]]]]",
|
||||
"user_id": "[[[[user_id]]]]",
|
||||
"hostname": "[[[[hostname]]]]",
|
||||
"state": "active",
|
||||
"old_state": "active",
|
||||
"old_task_state": null,
|
||||
"metadata": {},
|
||||
"node": "[[[[node]]]]",
|
||||
"ramdisk_id": "",
|
||||
"access_ip_v6": "[[[[V6_0]]]]",
|
||||
"disk_gb": 60,
|
||||
"access_ip_v4": "[[[[V4_0]]]]",
|
||||
"kernel_id": "",
|
||||
"host": "[[[[host]]]]",
|
||||
"display_name": "[[[[display_name]]]]",
|
||||
"image_ref_url": "http://[[[[V4_1]]]]:9292/images/[[[[UUID_2]]]]",
|
||||
"audit_period_beginning": "[[[[DT_0]]]]",
|
||||
"root_gb": 40,
|
||||
"tenant_id": "[[[[tenant_id]]]]",
|
||||
"created_at": "[[[[DT_1]]]]",
|
||||
"launched_at": "[[[[DT_2]]]]",
|
||||
"memory_mb": 2048,
|
||||
"instance_type": "2 GB Performance",
|
||||
"vcpus": 2,
|
||||
"image_meta": {
|
||||
"container_format": "ovf",
|
||||
"min_ram": "512",
|
||||
"instance_type_name": "512MB Standard Instance",
|
||||
"base_image_ref": "[[[[UUID_3]]]]",
|
||||
"os_distro": "centos",
|
||||
"org.openstack__1__os_distro": "org.centos",
|
||||
"image_type": "snapshot",
|
||||
"org.openstack__1__os_version": "6.5",
|
||||
"disk_format": "vhd",
|
||||
"instance_type_ephemeral_gb": "0",
|
||||
"org.openstack__1__architecture": "x64",
|
||||
"instance_type_vcpu_weight": "10",
|
||||
"instance_type_root_gb": "20",
|
||||
"instance_type_id": "2",
|
||||
"instance_type_rxtx_factor": "80.0",
|
||||
"min_disk": "40",
|
||||
"instance_type_vcpus": "1",
|
||||
"instance_uuid": "[[[[UUID_4]]]]",
|
||||
"instance_type_memory_mb": "512",
|
||||
"instance_type_swap": "512",
|
||||
"user_id": "[[[[user_id]]]]",
|
||||
"instance_type_flavorid": "2",
|
||||
"auto_disk_config": "True",
|
||||
"os_type": "linux"
|
||||
},
|
||||
"architecture": "x64",
|
||||
"new_task_state": "powering-off",
|
||||
"audit_period_ending": "[[[[DT_3]]]]",
|
||||
"os_type": "linux",
|
||||
"instance_flavor_id": "performance1-2"
|
||||
},
|
||||
"priority": "INFO",
|
||||
"_context_is_admin": true,
|
||||
"_context_user": "[[[[user_id]]]]",
|
||||
"publisher_id": "[[[[publisher_id]]]]",
|
||||
"message_id": "[[[[UUID_6]]]]",
|
||||
"_context_remote_address": null,
|
||||
"_context_roles": [],
|
||||
"timestamp": "[[[[DT_6]]]]",
|
||||
"_context_timestamp": "[[[[DT_5]]]]",
|
||||
"_unique_id": "[[[[XUUID_1]]]]",
|
||||
"_context_glance_api_servers": null,
|
||||
"_context_project_name": "[[[[tenant_id]]]]",
|
||||
"_context_read_deleted": "no",
|
||||
"_context_tenant": "[[[[tenant_id]]]]",
|
||||
"_context_instance_lock_checked": false,
|
||||
"_context_project_id": "[[[[tenant_id]]]]",
|
||||
"_context_user_name": "[[[[user_id]]]]"
|
||||
},
|
||||
{
|
||||
"_context_request_id": "req-[[[[UUID_0]]]]",
|
||||
"_context_quota_class": null,
|
||||
"event_type": "compute.instance.power_off.start",
|
||||
"_context_auth_token": null,
|
||||
"_context_user_id": "[[[[user_id]]]]",
|
||||
"payload": {
|
||||
"state_description": "powering-off",
|
||||
"availability_zone": null,
|
||||
"terminated_at": "",
|
||||
"ephemeral_gb": 20,
|
||||
"instance_type_id": 10,
|
||||
"deleted_at": "",
|
||||
"reservation_id": "[[[[reservation_id]]]]",
|
||||
"instance_id": "[[[[UUID_1]]]]",
|
||||
"user_id": "[[[[user_id]]]]",
|
||||
"hostname": "[[[[hostname]]]]",
|
||||
"state": "active",
|
||||
"launched_at": "[[[[DT_2]]]]",
|
||||
"metadata": {},
|
||||
"node": "[[[[node]]]]",
|
||||
"ramdisk_id": "",
|
||||
"access_ip_v6": "[[[[V6_0]]]]",
|
||||
"disk_gb": 60,
|
||||
"access_ip_v4": "[[[[V4_0]]]]",
|
||||
"kernel_id": "",
|
||||
"host": "[[[[host]]]]",
|
||||
"display_name": "[[[[display_name]]]]",
|
||||
"image_ref_url": "http://[[[[V4_1]]]]:9292/images/[[[[UUID_2]]]]",
|
||||
"root_gb": 40,
|
||||
"tenant_id": "[[[[tenant_id]]]]",
|
||||
"created_at": "[[[[DT_1]]]]",
|
||||
"memory_mb": 2048,
|
||||
"instance_type": "2 GB Performance",
|
||||
"vcpus": 2,
|
||||
"image_meta": {
|
||||
"container_format": "ovf",
|
||||
"min_ram": "512",
|
||||
"instance_type_name": "512MB Standard Instance",
|
||||
"base_image_ref": "[[[[UUID_3]]]]",
|
||||
"os_distro": "centos",
|
||||
"org.openstack__1__os_distro": "org.centos",
|
||||
"image_type": "snapshot",
|
||||
"org.openstack__1__os_version": "6.5",
|
||||
"disk_format": "vhd",
|
||||
"instance_type_ephemeral_gb": "0",
|
||||
"org.openstack__1__architecture": "x64",
|
||||
"instance_type_vcpu_weight": "10",
|
||||
"instance_type_root_gb": "20",
|
||||
"instance_type_id": "2",
|
||||
"instance_type_rxtx_factor": "80.0",
|
||||
"min_disk": "40",
|
||||
"instance_type_vcpus": "1",
|
||||
"instance_uuid": "[[[[UUID_4]]]]",
|
||||
"instance_type_memory_mb": "512",
|
||||
"instance_type_swap": "512",
|
||||
"user_id": "[[[[user_id]]]]",
|
||||
"instance_type_flavorid": "2",
|
||||
"auto_disk_config": "True",
|
||||
"os_type": "linux"
|
||||
},
|
||||
"architecture": "x64",
|
||||
"os_type": "linux",
|
||||
"instance_flavor_id": "performance1-2"
|
||||
},
|
||||
"priority": "INFO",
|
||||
"_context_is_admin": true,
|
||||
"_context_user": "[[[[user_id]]]]",
|
||||
"publisher_id": "[[[[publisher_id]]]]",
|
||||
"message_id": "[[[[UUID_7]]]]",
|
||||
"_context_remote_address": null,
|
||||
"_context_roles": [],
|
||||
"timestamp": "[[[[DT_7]]]]",
|
||||
"_context_timestamp": "[[[[DT_5]]]]",
|
||||
"_unique_id": "[[[[XUUID_2]]]]",
|
||||
"_context_glance_api_servers": null,
|
||||
"_context_project_name": "[[[[tenant_id]]]]",
|
||||
"_context_read_deleted": "no",
|
||||
"_context_tenant": "[[[[tenant_id]]]]",
|
||||
"_context_instance_lock_checked": false,
|
||||
"_context_project_id": "[[[[tenant_id]]]]",
|
||||
"_context_user_name": "[[[[user_id]]]]"
|
||||
},
|
||||
{
|
||||
"_context_request_id": "req-[[[[UUID_0]]]]",
|
||||
"_context_quota_class": null,
|
||||
"event_type": "compute.instance.update",
|
||||
"_context_auth_token": null,
|
||||
"_context_user_id": "[[[[user_id]]]]",
|
||||
"payload": {
|
||||
"state_description": "",
|
||||
"availability_zone": null,
|
||||
"terminated_at": "",
|
||||
"ephemeral_gb": 20,
|
||||
"instance_type_id": 10,
|
||||
"bandwidth": {
|
||||
"public": {
|
||||
"bw_in": 38782473,
|
||||
"bw_out": 1240886528
|
||||
},
|
||||
"private": {
|
||||
"bw_in": 2580,
|
||||
"bw_out": 1302
|
||||
}
|
||||
},
|
||||
"deleted_at": "",
|
||||
"reservation_id": "[[[[reservation_id]]]]",
|
||||
"instance_id": "[[[[UUID_1]]]]",
|
||||
"user_id": "[[[[user_id]]]]",
|
||||
"hostname": "[[[[hostname]]]]",
|
||||
"state": "stopped",
|
||||
"old_state": "active",
|
||||
"old_task_state": "powering-off",
|
||||
"metadata": {},
|
||||
"node": "[[[[node]]]]",
|
||||
"ramdisk_id": "",
|
||||
"access_ip_v6": "[[[[V6_0]]]]",
|
||||
"disk_gb": 60,
|
||||
"access_ip_v4": "[[[[V4_0]]]]",
|
||||
"kernel_id": "",
|
||||
"host": "[[[[host]]]]",
|
||||
"display_name": "[[[[display_name]]]]",
|
||||
"image_ref_url": "http://[[[[V4_1]]]]:9292/images/[[[[UUID_2]]]]",
|
||||
"audit_period_beginning": "[[[[DT_0]]]]",
|
||||
"root_gb": 40,
|
||||
"tenant_id": "[[[[tenant_id]]]]",
|
||||
"created_at": "[[[[DT_1]]]]",
|
||||
"launched_at": "[[[[DT_2]]]]",
|
||||
"memory_mb": 2048,
|
||||
"instance_type": "2 GB Performance",
|
||||
"vcpus": 2,
|
||||
"image_meta": {
|
||||
"container_format": "ovf",
|
||||
"min_ram": "512",
|
||||
"instance_type_name": "512MB Standard Instance",
|
||||
"base_image_ref": "[[[[UUID_3]]]]",
|
||||
"os_distro": "centos",
|
||||
"org.openstack__1__os_distro": "org.centos",
|
||||
"image_type": "snapshot",
|
||||
"org.openstack__1__os_version": "6.5",
|
||||
"disk_format": "vhd",
|
||||
"instance_type_ephemeral_gb": "0",
|
||||
"org.openstack__1__architecture": "x64",
|
||||
"instance_type_vcpu_weight": "10",
|
||||
"instance_type_root_gb": "20",
|
||||
"instance_type_id": "2",
|
||||
"instance_type_rxtx_factor": "80.0",
|
||||
"min_disk": "40",
|
||||
"instance_type_vcpus": "1",
|
||||
"instance_uuid": "[[[[UUID_4]]]]",
|
||||
"instance_type_memory_mb": "512",
|
||||
"instance_type_swap": "512",
|
||||
"user_id": "[[[[user_id]]]]",
|
||||
"instance_type_flavorid": "2",
|
||||
"auto_disk_config": "True",
|
||||
"os_type": "linux"
|
||||
},
|
||||
"architecture": "x64",
|
||||
"new_task_state": null,
|
||||
"audit_period_ending": "[[[[DT_8]]]]",
|
||||
"os_type": "linux",
|
||||
"instance_flavor_id": "performance1-2"
|
||||
},
|
||||
"priority": "INFO",
|
||||
"_context_is_admin": true,
|
||||
"_context_user": "[[[[user_id]]]]",
|
||||
"publisher_id": "[[[[publisher_id]]]]",
|
||||
"message_id": "[[[[UUID_8]]]]",
|
||||
"_context_remote_address": null,
|
||||
"_context_roles": [],
|
||||
"timestamp": "[[[[DT_9]]]]",
|
||||
"_context_timestamp": "[[[[DT_5]]]]",
|
||||
"_unique_id": "[[[[XUUID_3]]]]",
|
||||
"_context_glance_api_servers": null,
|
||||
"_context_project_name": "[[[[tenant_id]]]]",
|
||||
"_context_read_deleted": "no",
|
||||
"_context_tenant": "[[[[tenant_id]]]]",
|
||||
"_context_instance_lock_checked": false,
|
||||
"_context_project_id": "[[[[tenant_id]]]]",
|
||||
"_context_user_name": "[[[[user_id]]]]"
|
||||
},
|
||||
{
|
||||
"_context_request_id": "req-[[[[UUID_0]]]]",
|
||||
"_context_quota_class": null,
|
||||
"event_type": "compute.instance.power_off.end",
|
||||
"_context_auth_token": null,
|
||||
"_context_user_id": "[[[[user_id]]]]",
|
||||
"payload": {
|
||||
"state_description": "",
|
||||
"availability_zone": null,
|
||||
"terminated_at": "",
|
||||
"ephemeral_gb": 20,
|
||||
"instance_type_id": 10,
|
||||
"deleted_at": "",
|
||||
"reservation_id": "[[[[reservation_id]]]]",
|
||||
"instance_id": "[[[[UUID_1]]]]",
|
||||
"user_id": "[[[[user_id]]]]",
|
||||
"hostname": "[[[[hostname]]]]",
|
||||
"state": "stopped",
|
||||
"launched_at": "[[[[DT_2]]]]",
|
||||
"metadata": {},
|
||||
"node": "[[[[node]]]]",
|
||||
"ramdisk_id": "",
|
||||
"access_ip_v6": "[[[[V6_0]]]]",
|
||||
"disk_gb": 60,
|
||||
"access_ip_v4": "[[[[V4_0]]]]",
|
||||
"kernel_id": "",
|
||||
"host": "[[[[host]]]]",
|
||||
"display_name": "[[[[display_name]]]]",
|
||||
"image_ref_url": "http://[[[[V4_1]]]]:9292/images/[[[[UUID_2]]]]",
|
||||
"root_gb": 40,
|
||||
"tenant_id": "[[[[tenant_id]]]]",
|
||||
"created_at": "[[[[DT_1]]]]",
|
||||
"memory_mb": 2048,
|
||||
"instance_type": "2 GB Performance",
|
||||
"vcpus": 2,
|
||||
"image_meta": {
|
||||
"container_format": "ovf",
|
||||
"min_ram": "512",
|
||||
"instance_type_name": "512MB Standard Instance",
|
||||
"base_image_ref": "[[[[UUID_3]]]]",
|
||||
"os_distro": "centos",
|
||||
"org.openstack__1__os_distro": "org.centos",
|
||||
"image_type": "snapshot",
|
||||
"org.openstack__1__os_version": "6.5",
|
||||
"disk_format": "vhd",
|
||||
"instance_type_ephemeral_gb": "0",
|
||||
"org.openstack__1__architecture": "x64",
|
||||
"instance_type_vcpu_weight": "10",
|
||||
"instance_type_root_gb": "20",
|
||||
"instance_type_id": "2",
|
||||
"instance_type_rxtx_factor": "80.0",
|
||||
"min_disk": "40",
|
||||
"instance_type_vcpus": "1",
|
||||
"instance_uuid": "[[[[UUID_4]]]]",
|
||||
"instance_type_memory_mb": "512",
|
||||
"instance_type_swap": "512",
|
||||
"user_id": "[[[[user_id]]]]",
|
||||
"instance_type_flavorid": "2",
|
||||
"auto_disk_config": "True",
|
||||
"os_type": "linux"
|
||||
},
|
||||
"architecture": "x64",
|
||||
"os_type": "linux",
|
||||
"instance_flavor_id": "performance1-2"
|
||||
},
|
||||
"priority": "INFO",
|
||||
"_context_is_admin": true,
|
||||
"_context_user": "[[[[user_id]]]]",
|
||||
"publisher_id": "[[[[publisher_id]]]]",
|
||||
"message_id": "[[[[UUID_9]]]]",
|
||||
"_context_remote_address": null,
|
||||
"_context_roles": [],
|
||||
"timestamp": "[[[[DT_10]]]]",
|
||||
"_context_timestamp": "[[[[DT_5]]]]",
|
||||
"_unique_id": "[[[[XUUID_4]]]]",
|
||||
"_context_glance_api_servers": null,
|
||||
"_context_project_name": "[[[[tenant_id]]]]",
|
||||
"_context_read_deleted": "no",
|
||||
"_context_tenant": "[[[[tenant_id]]]]",
|
||||
"_context_instance_lock_checked": false,
|
||||
"_context_project_id": "[[[[tenant_id]]]]",
|
||||
"_context_user_name": "[[[[user_id]]]]"
|
||||
}
|
||||
]
|
File diff suppressed because it is too large
Load Diff
1863
templates/compute.instance.rebuild.start_14.json
Normal file
1863
templates/compute.instance.rebuild.start_14.json
Normal file
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
694
templates/compute.instance.rescue.start_6.json
Normal file
694
templates/compute.instance.rescue.start_6.json
Normal file
@ -0,0 +1,694 @@
|
||||
[
|
||||
{
|
||||
"xuuid": 7,
|
||||
"v4": 6,
|
||||
"time_map": {
|
||||
"[[[[DT_9]]]]": [
|
||||
0,
|
||||
0,
|
||||
926437
|
||||
],
|
||||
"[[[[DT_12]]]]": [
|
||||
-211,
|
||||
72516,
|
||||
926437
|
||||
],
|
||||
"[[[[DT_5]]]]": [
|
||||
-1,
|
||||
86399,
|
||||
612601
|
||||
],
|
||||
"[[[[DT_7]]]]": [
|
||||
0,
|
||||
0,
|
||||
398399
|
||||
],
|
||||
"[[[[DT_1]]]]": [
|
||||
-211,
|
||||
72515,
|
||||
926437
|
||||
],
|
||||
"[[[[DT_3]]]]": [
|
||||
-1,
|
||||
86399,
|
||||
926437
|
||||
],
|
||||
"[[[[DT_14]]]]": [
|
||||
-211,
|
||||
72515,
|
||||
926437
|
||||
],
|
||||
"[[[[DT_15]]]]": [
|
||||
0,
|
||||
1,
|
||||
705844
|
||||
],
|
||||
"[[[[DT_8]]]]": [
|
||||
0,
|
||||
1,
|
||||
351138
|
||||
],
|
||||
"[[[[DT_10]]]]": [
|
||||
0,
|
||||
1,
|
||||
621080
|
||||
],
|
||||
"[[[[DT_4]]]]": [
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"[[[[DT_6]]]]": [
|
||||
0,
|
||||
0,
|
||||
248521
|
||||
],
|
||||
"[[[[DT_0]]]]": [
|
||||
-1,
|
||||
36090,
|
||||
926437
|
||||
],
|
||||
"[[[[DT_2]]]]": [
|
||||
-209,
|
||||
17840,
|
||||
926437
|
||||
],
|
||||
"[[[[DT_13]]]]": [
|
||||
-1,
|
||||
86363,
|
||||
926437
|
||||
],
|
||||
"[[[[DT_11]]]]": [
|
||||
-209,
|
||||
17840,
|
||||
926437
|
||||
]
|
||||
},
|
||||
"uuid": 9,
|
||||
"v6": 1
|
||||
},
|
||||
{
|
||||
"_context_request_id": "req-[[[[UUID_0]]]]",
|
||||
"_context_quota_class": null,
|
||||
"event_type": "compute.instance.update",
|
||||
"_context_auth_token": "[[[[XUUID_0]]]]",
|
||||
"_context_user_id": "[[[[user_id]]]]",
|
||||
"payload": {
|
||||
"state_description": "rescuing",
|
||||
"availability_zone": null,
|
||||
"terminated_at": "",
|
||||
"ephemeral_gb": 0,
|
||||
"instance_type_id": 2,
|
||||
"bandwidth": {},
|
||||
"deleted_at": "",
|
||||
"reservation_id": "[[[[reservation_id]]]]",
|
||||
"instance_id": "[[[[UUID_1]]]]",
|
||||
"user_id": "[[[[user_id]]]]",
|
||||
"hostname": "[[[[hostname]]]]",
|
||||
"state": "active",
|
||||
"old_state": "active",
|
||||
"old_task_state": null,
|
||||
"metadata": {},
|
||||
"node": "[[[[node]]]]",
|
||||
"ramdisk_id": "",
|
||||
"access_ip_v6": "[[[[V6_0]]]]",
|
||||
"disk_gb": 20,
|
||||
"access_ip_v4": "[[[[V4_0]]]]",
|
||||
"kernel_id": "",
|
||||
"host": "[[[[host]]]]",
|
||||
"display_name": "[[[[display_name]]]]",
|
||||
"image_ref_url": "http://[[[[V4_1]]]]:9292/images/[[[[UUID_2]]]]",
|
||||
"audit_period_beginning": "[[[[DT_0]]]]",
|
||||
"root_gb": 20,
|
||||
"tenant_id": "[[[[tenant_id]]]]",
|
||||
"created_at": "[[[[DT_1]]]]",
|
||||
"launched_at": "[[[[DT_2]]]]",
|
||||
"memory_mb": 512,
|
||||
"instance_type": "512MB Standard Instance",
|
||||
"vcpus": 1,
|
||||
"image_meta": {
|
||||
"container_format": "ovf",
|
||||
"min_ram": "512",
|
||||
"os_distro": "centos",
|
||||
"org.openstack__1__os_distro": "org.centos",
|
||||
"image_type": "base",
|
||||
"disk_format": "vhd",
|
||||
"org.openstack__1__architecture": "x64",
|
||||
"min_disk": "20",
|
||||
"cache_in_nova": "True",
|
||||
"auto_disk_config": "True",
|
||||
"os_type": "linux",
|
||||
"org.openstack__1__os_version": "6.4"
|
||||
},
|
||||
"architecture": "x64",
|
||||
"new_task_state": "rescuing",
|
||||
"audit_period_ending": "[[[[DT_3]]]]",
|
||||
"os_type": "linux",
|
||||
"instance_flavor_id": "2"
|
||||
},
|
||||
"priority": "INFO",
|
||||
"_context_is_admin": false,
|
||||
"_context_user": "[[[[user_id]]]]",
|
||||
"publisher_id": "[[[[publisher_id]]]]",
|
||||
"message_id": "[[[[UUID_3]]]]",
|
||||
"_context_remote_address": "[[[[V4_2]]]]",
|
||||
"_context_roles": [
|
||||
"checkmate",
|
||||
"object-store:default",
|
||||
"compute:default",
|
||||
"identity:user-admin"
|
||||
],
|
||||
"timestamp": "[[[[DT_4]]]]",
|
||||
"_context_timestamp": "[[[[DT_5]]]]",
|
||||
"_unique_id": "[[[[XUUID_1]]]]",
|
||||
"_context_glance_api_servers": null,
|
||||
"_context_project_name": "[[[[tenant_id]]]]",
|
||||
"_context_read_deleted": "no",
|
||||
"_context_tenant": "[[[[tenant_id]]]]",
|
||||
"_context_instance_lock_checked": false,
|
||||
"_context_project_id": "[[[[tenant_id]]]]",
|
||||
"_context_user_name": "[[[[user_id]]]]"
|
||||
},
|
||||
{
|
||||
"_context_request_id": "req-[[[[UUID_0]]]]",
|
||||
"_context_quota_class": null,
|
||||
"event_type": "compute.instance.update",
|
||||
"_context_auth_token": "[[[[XUUID_0]]]]",
|
||||
"_context_user_id": "[[[[user_id]]]]",
|
||||
"payload": {
|
||||
"state_description": "",
|
||||
"availability_zone": null,
|
||||
"terminated_at": "",
|
||||
"ephemeral_gb": 0,
|
||||
"instance_type_id": 2,
|
||||
"bandwidth": {
|
||||
"public": {
|
||||
"bw_in": 14995926,
|
||||
"bw_out": 8758312
|
||||
},
|
||||
"private": {
|
||||
"bw_in": 180,
|
||||
"bw_out": 84
|
||||
}
|
||||
},
|
||||
"deleted_at": "",
|
||||
"reservation_id": "[[[[reservation_id]]]]",
|
||||
"instance_id": "[[[[UUID_1]]]]",
|
||||
"user_id": "[[[[user_id]]]]",
|
||||
"hostname": "[[[[hostname]]]]",
|
||||
"state": "active",
|
||||
"old_state": null,
|
||||
"old_task_state": null,
|
||||
"metadata": {},
|
||||
"node": "[[[[node]]]]",
|
||||
"ramdisk_id": "",
|
||||
"access_ip_v6": "[[[[V6_0]]]]",
|
||||
"disk_gb": 20,
|
||||
"access_ip_v4": "[[[[V4_0]]]]",
|
||||
"kernel_id": "",
|
||||
"host": "[[[[host]]]]",
|
||||
"display_name": "[[[[display_name]]]]",
|
||||
"image_ref_url": "http://[[[[V4_3]]]]:9292/images/[[[[UUID_2]]]]",
|
||||
"audit_period_beginning": "[[[[DT_0]]]]",
|
||||
"root_gb": 20,
|
||||
"tenant_id": "[[[[tenant_id]]]]",
|
||||
"created_at": "[[[[DT_1]]]]",
|
||||
"launched_at": "[[[[DT_2]]]]",
|
||||
"memory_mb": 512,
|
||||
"instance_type": "512MB Standard Instance",
|
||||
"vcpus": 1,
|
||||
"image_meta": {
|
||||
"container_format": "ovf",
|
||||
"min_ram": "512",
|
||||
"os_distro": "centos",
|
||||
"org.openstack__1__os_distro": "org.centos",
|
||||
"image_type": "base",
|
||||
"disk_format": "vhd",
|
||||
"org.openstack__1__architecture": "x64",
|
||||
"min_disk": "20",
|
||||
"cache_in_nova": "True",
|
||||
"auto_disk_config": "True",
|
||||
"os_type": "linux",
|
||||
"org.openstack__1__os_version": "6.4"
|
||||
},
|
||||
"architecture": "x64",
|
||||
"new_task_state": null,
|
||||
"audit_period_ending": "[[[[DT_3]]]]",
|
||||
"os_type": "linux",
|
||||
"instance_flavor_id": "2"
|
||||
},
|
||||
"priority": "INFO",
|
||||
"_context_is_admin": false,
|
||||
"_context_user": "[[[[user_id]]]]",
|
||||
"publisher_id": "[[[[publisher_id]]]]",
|
||||
"message_id": "[[[[UUID_4]]]]",
|
||||
"_context_remote_address": "[[[[V4_2]]]]",
|
||||
"_context_roles": [
|
||||
"checkmate",
|
||||
"object-store:default",
|
||||
"compute:default",
|
||||
"identity:user-admin"
|
||||
],
|
||||
"timestamp": "[[[[DT_6]]]]",
|
||||
"_context_timestamp": "[[[[DT_5]]]]",
|
||||
"_unique_id": "[[[[XUUID_2]]]]",
|
||||
"_context_glance_api_servers": null,
|
||||
"_context_project_name": "[[[[tenant_id]]]]",
|
||||
"_context_read_deleted": "no",
|
||||
"_context_tenant": "[[[[tenant_id]]]]",
|
||||
"_context_instance_lock_checked": false,
|
||||
"_context_project_id": "[[[[tenant_id]]]]",
|
||||
"_context_user_name": "[[[[user_id]]]]"
|
||||
},
|
||||
{
|
||||
"_context_request_id": "req-[[[[UUID_0]]]]",
|
||||
"_context_quota_class": null,
|
||||
"event_type": "compute.instance.update",
|
||||
"_context_auth_token": "[[[[XUUID_0]]]]",
|
||||
"_context_user_id": "[[[[user_id]]]]",
|
||||
"payload": {
|
||||
"state_description": "rescuing",
|
||||
"availability_zone": null,
|
||||
"terminated_at": "",
|
||||
"ephemeral_gb": 0,
|
||||
"instance_type_id": 2,
|
||||
"bandwidth": {
|
||||
"public": {
|
||||
"bw_in": 14995926,
|
||||
"bw_out": 8758312
|
||||
},
|
||||
"private": {
|
||||
"bw_in": 180,
|
||||
"bw_out": 84
|
||||
}
|
||||
},
|
||||
"deleted_at": "",
|
||||
"reservation_id": "[[[[reservation_id]]]]",
|
||||
"instance_id": "[[[[UUID_1]]]]",
|
||||
"user_id": "[[[[user_id]]]]",
|
||||
"hostname": "[[[[hostname]]]]",
|
||||
"state": "active",
|
||||
"old_state": "active",
|
||||
"old_task_state": null,
|
||||
"metadata": {},
|
||||
"node": "[[[[node]]]]",
|
||||
"ramdisk_id": "",
|
||||
"access_ip_v6": "[[[[V6_0]]]]",
|
||||
"disk_gb": 20,
|
||||
"access_ip_v4": "[[[[V4_0]]]]",
|
||||
"kernel_id": "",
|
||||
"host": "[[[[host]]]]",
|
||||
"display_name": "[[[[display_name]]]]",
|
||||
"image_ref_url": "http://[[[[V4_3]]]]:9292/images/[[[[UUID_2]]]]",
|
||||
"audit_period_beginning": "[[[[DT_0]]]]",
|
||||
"root_gb": 20,
|
||||
"tenant_id": "[[[[tenant_id]]]]",
|
||||
"created_at": "[[[[DT_1]]]]",
|
||||
"launched_at": "[[[[DT_2]]]]",
|
||||
"memory_mb": 512,
|
||||
"instance_type": "512MB Standard Instance",
|
||||
"vcpus": 1,
|
||||
"image_meta": {
|
||||
"container_format": "ovf",
|
||||
"min_ram": "512",
|
||||
"os_distro": "centos",
|
||||
"org.openstack__1__os_distro": "org.centos",
|
||||
"image_type": "base",
|
||||
"disk_format": "vhd",
|
||||
"org.openstack__1__architecture": "x64",
|
||||
"min_disk": "20",
|
||||
"cache_in_nova": "True",
|
||||
"auto_disk_config": "True",
|
||||
"os_type": "linux",
|
||||
"org.openstack__1__os_version": "6.4"
|
||||
},
|
||||
"architecture": "x64",
|
||||
"new_task_state": "rescuing",
|
||||
"audit_period_ending": "[[[[DT_3]]]]",
|
||||
"os_type": "linux",
|
||||
"instance_flavor_id": "2"
|
||||
},
|
||||
"priority": "INFO",
|
||||
"_context_is_admin": false,
|
||||
"_context_user": "[[[[user_id]]]]",
|
||||
"publisher_id": "[[[[publisher_id]]]]",
|
||||
"message_id": "[[[[UUID_5]]]]",
|
||||
"_context_remote_address": "[[[[V4_2]]]]",
|
||||
"_context_roles": [
|
||||
"checkmate",
|
||||
"object-store:default",
|
||||
"compute:default",
|
||||
"identity:user-admin"
|
||||
],
|
||||
"timestamp": "[[[[DT_7]]]]",
|
||||
"_context_timestamp": "[[[[DT_5]]]]",
|
||||
"_unique_id": "[[[[XUUID_3]]]]",
|
||||
"_context_glance_api_servers": null,
|
||||
"_context_project_name": "[[[[tenant_id]]]]",
|
||||
"_context_read_deleted": "no",
|
||||
"_context_tenant": "[[[[tenant_id]]]]",
|
||||
"_context_instance_lock_checked": false,
|
||||
"_context_project_id": "[[[[tenant_id]]]]",
|
||||
"_context_user_name": "[[[[user_id]]]]"
|
||||
},
|
||||
{
|
||||
"_context_request_id": "req-[[[[UUID_0]]]]",
|
||||
"_context_quota_class": null,
|
||||
"event_type": "compute.instance.rescue.start",
|
||||
"_context_auth_token": "[[[[XUUID_0]]]]",
|
||||
"_context_user_id": "[[[[user_id]]]]",
|
||||
"payload": {
|
||||
"state_description": "",
|
||||
"availability_zone": null,
|
||||
"terminated_at": "",
|
||||
"ephemeral_gb": 0,
|
||||
"instance_type_id": 2,
|
||||
"deleted_at": "",
|
||||
"reservation_id": "[[[[reservation_id]]]]",
|
||||
"instance_id": "[[[[UUID_1]]]]",
|
||||
"user_id": "[[[[user_id]]]]",
|
||||
"fixed_ips": [
|
||||
{
|
||||
"floating_ips": [],
|
||||
"label": "public",
|
||||
"version": 4,
|
||||
"meta": {},
|
||||
"address": "[[[[V4_0]]]]",
|
||||
"type": "fixed"
|
||||
},
|
||||
{
|
||||
"floating_ips": [],
|
||||
"label": "public",
|
||||
"version": 6,
|
||||
"meta": {},
|
||||
"address": "[[[[V6_0]]]]",
|
||||
"type": "fixed"
|
||||
},
|
||||
{
|
||||
"floating_ips": [],
|
||||
"label": "private",
|
||||
"version": 4,
|
||||
"meta": {},
|
||||
"address": "[[[[V4_4]]]]",
|
||||
"type": "fixed"
|
||||
}
|
||||
],
|
||||
"hostname": "[[[[hostname]]]]",
|
||||
"state": "active",
|
||||
"rescue_image_name": "",
|
||||
"launched_at": "[[[[DT_2]]]]",
|
||||
"metadata": {},
|
||||
"node": "[[[[node]]]]",
|
||||
"ramdisk_id": "",
|
||||
"access_ip_v6": "[[[[V6_0]]]]",
|
||||
"disk_gb": 20,
|
||||
"access_ip_v4": "[[[[V4_0]]]]",
|
||||
"kernel_id": "",
|
||||
"host": "[[[[host]]]]",
|
||||
"display_name": "[[[[display_name]]]]",
|
||||
"image_ref_url": "http://[[[[V4_5]]]]:9292/images/[[[[UUID_2]]]]",
|
||||
"root_gb": 20,
|
||||
"tenant_id": "[[[[tenant_id]]]]",
|
||||
"created_at": "[[[[DT_1]]]]",
|
||||
"memory_mb": 512,
|
||||
"instance_type": "512MB Standard Instance",
|
||||
"vcpus": 1,
|
||||
"image_meta": {
|
||||
"container_format": "ovf",
|
||||
"min_ram": 512,
|
||||
"os_distro": "centos",
|
||||
"org.openstack__1__os_distro": "org.centos",
|
||||
"image_type": "base",
|
||||
"disk_format": "vhd",
|
||||
"org.openstack__1__architecture": "x64",
|
||||
"min_disk": 20,
|
||||
"cache_in_nova": "True",
|
||||
"auto_disk_config": "True",
|
||||
"os_type": "linux",
|
||||
"org.openstack__1__os_version": "6.4"
|
||||
},
|
||||
"architecture": "x64",
|
||||
"os_type": "linux",
|
||||
"instance_flavor_id": "2"
|
||||
},
|
||||
"priority": "INFO",
|
||||
"_context_is_admin": true,
|
||||
"_context_user": "[[[[user_id]]]]",
|
||||
"publisher_id": "[[[[publisher_id]]]]",
|
||||
"message_id": "[[[[UUID_6]]]]",
|
||||
"_context_remote_address": "[[[[V4_2]]]]",
|
||||
"_context_roles": [
|
||||
"checkmate",
|
||||
"object-store:default",
|
||||
"compute:default",
|
||||
"identity:user-admin",
|
||||
"admin"
|
||||
],
|
||||
"timestamp": "[[[[DT_8]]]]",
|
||||
"_context_timestamp": "[[[[DT_5]]]]",
|
||||
"_unique_id": "[[[[XUUID_4]]]]",
|
||||
"_context_glance_api_servers": null,
|
||||
"_context_project_name": "[[[[tenant_id]]]]",
|
||||
"_context_read_deleted": "no",
|
||||
"_context_tenant": "[[[[tenant_id]]]]",
|
||||
"_context_instance_lock_checked": false,
|
||||
"_context_project_id": "[[[[tenant_id]]]]",
|
||||
"_context_user_name": "[[[[user_id]]]]"
|
||||
},
|
||||
{
|
||||
"_context_request_id": "req-[[[[UUID_0]]]]",
|
||||
"_context_quota_class": null,
|
||||
"event_type": "compute.instance.update",
|
||||
"_context_auth_token": "[[[[XUUID_0]]]]",
|
||||
"_context_user_id": "[[[[user_id]]]]",
|
||||
"payload": {
|
||||
"state_description": "",
|
||||
"availability_zone": null,
|
||||
"terminated_at": "",
|
||||
"ephemeral_gb": 0,
|
||||
"instance_type_id": 2,
|
||||
"bandwidth": {
|
||||
"public": {
|
||||
"bw_in": 14995926,
|
||||
"bw_out": 8758312
|
||||
},
|
||||
"private": {
|
||||
"bw_in": 180,
|
||||
"bw_out": 84
|
||||
}
|
||||
},
|
||||
"deleted_at": "",
|
||||
"reservation_id": "[[[[reservation_id]]]]",
|
||||
"instance_id": "[[[[UUID_1]]]]",
|
||||
"user_id": "[[[[user_id]]]]",
|
||||
"hostname": "[[[[hostname]]]]",
|
||||
"state": "active",
|
||||
"old_state": "active",
|
||||
"old_task_state": "rescuing",
|
||||
"metadata": {},
|
||||
"node": "[[[[node]]]]",
|
||||
"ramdisk_id": "",
|
||||
"access_ip_v6": "[[[[V6_0]]]]",
|
||||
"disk_gb": 20,
|
||||
"access_ip_v4": "[[[[V4_0]]]]",
|
||||
"kernel_id": "",
|
||||
"host": "[[[[host]]]]",
|
||||
"display_name": "[[[[display_name]]]]",
|
||||
"image_ref_url": "http://[[[[V4_5]]]]:9292/images/[[[[UUID_2]]]]",
|
||||
"audit_period_beginning": "[[[[DT_0]]]]",
|
||||
"root_gb": 20,
|
||||
"tenant_id": "[[[[tenant_id]]]]",
|
||||
"created_at": "[[[[DT_1]]]]",
|
||||
"launched_at": "[[[[DT_2]]]]",
|
||||
"memory_mb": 512,
|
||||
"instance_type": "512MB Standard Instance",
|
||||
"vcpus": 1,
|
||||
"image_meta": {
|
||||
"container_format": "ovf",
|
||||
"min_ram": "512",
|
||||
"os_distro": "centos",
|
||||
"org.openstack__1__os_distro": "org.centos",
|
||||
"image_type": "base",
|
||||
"disk_format": "vhd",
|
||||
"org.openstack__1__architecture": "x64",
|
||||
"min_disk": "20",
|
||||
"cache_in_nova": "True",
|
||||
"auto_disk_config": "True",
|
||||
"os_type": "linux",
|
||||
"org.openstack__1__os_version": "6.4"
|
||||
},
|
||||
"architecture": "x64",
|
||||
"new_task_state": null,
|
||||
"audit_period_ending": "[[[[DT_9]]]]",
|
||||
"os_type": "linux",
|
||||
"instance_flavor_id": "2"
|
||||
},
|
||||
"priority": "INFO",
|
||||
"_context_is_admin": false,
|
||||
"_context_user": "[[[[user_id]]]]",
|
||||
"publisher_id": "[[[[publisher_id]]]]",
|
||||
"message_id": "[[[[UUID_7]]]]",
|
||||
"_context_remote_address": "[[[[V4_2]]]]",
|
||||
"_context_roles": [
|
||||
"checkmate",
|
||||
"object-store:default",
|
||||
"compute:default",
|
||||
"identity:user-admin",
|
||||
"admin"
|
||||
],
|
||||
"timestamp": "[[[[DT_10]]]]",
|
||||
"_context_timestamp": "[[[[DT_5]]]]",
|
||||
"_unique_id": "[[[[XUUID_5]]]]",
|
||||
"_context_glance_api_servers": null,
|
||||
"_context_project_name": "[[[[tenant_id]]]]",
|
||||
"_context_read_deleted": "no",
|
||||
"_context_tenant": "[[[[tenant_id]]]]",
|
||||
"_context_instance_lock_checked": false,
|
||||
"_context_project_id": "[[[[tenant_id]]]]",
|
||||
"_context_user_name": "[[[[user_id]]]]"
|
||||
},
|
||||
{
|
||||
"_context_request_id": "req-[[[[UUID_0]]]]",
|
||||
"_context_quota_class": null,
|
||||
"event_type": "rescue_instance",
|
||||
"_context_auth_token": "[[[[XUUID_0]]]]",
|
||||
"_context_user_id": "[[[[user_id]]]]",
|
||||
"payload": {
|
||||
"exception": {
|
||||
"kwargs": {
|
||||
"instance_id": "[[[[UUID_1]]]]",
|
||||
"reason": "Driver Error: [Errno 104] Connection reset by peer",
|
||||
"code": 400
|
||||
}
|
||||
},
|
||||
"args": {
|
||||
"instance": {
|
||||
"vm_state": "active",
|
||||
"availability_zone": null,
|
||||
"terminated_at": null,
|
||||
"ephemeral_gb": 0,
|
||||
"instance_type_id": 2,
|
||||
"user_data": null,
|
||||
"cleaned": false,
|
||||
"vm_mode": "xen",
|
||||
"deleted_at": null,
|
||||
"reservation_id": "[[[[reservation_id]]]]",
|
||||
"id": 320469,
|
||||
"disable_terminate": false,
|
||||
"root_device_name": "/dev/xvda",
|
||||
"display_name": "[[[[display_name]]]]",
|
||||
"uuid": "[[[[UUID_1]]]]",
|
||||
"default_swap_device": null,
|
||||
"hostname": "[[[[hostname]]]]",
|
||||
"launched_on": "c-10-21-19-150",
|
||||
"display_description": "[[[[display_name]]]]",
|
||||
"key_data": null,
|
||||
"deleted": false,
|
||||
"config_drive": "",
|
||||
"power_state": 1,
|
||||
"default_ephemeral_device": null,
|
||||
"progress": 100,
|
||||
"project_id": "[[[[tenant_id]]]]",
|
||||
"launched_at": "[[[[DT_11]]]]",
|
||||
"scheduled_at": "[[[[DT_12]]]]",
|
||||
"node": "[[[[node]]]]",
|
||||
"ramdisk_id": "",
|
||||
"access_ip_v6": "[[[[V6_0]]]]",
|
||||
"access_ip_v4": "[[[[V4_0]]]]",
|
||||
"kernel_id": "",
|
||||
"key_name": null,
|
||||
"updated_at": "[[[[DT_13]]]]",
|
||||
"host": "[[[[host]]]]",
|
||||
"root_gb": 20,
|
||||
"user_id": "[[[[user_id]]]]",
|
||||
"system_metadata": {
|
||||
"instance_type_id": "2",
|
||||
"image_min_ram": 512,
|
||||
"image_os_distro": "centos",
|
||||
"instance_type_vcpu_weight": "10",
|
||||
"image_cache_in_nova": "True",
|
||||
"instance_type_ephemeral_gb": "0",
|
||||
"image_org.openstack__1__os_version": "6.4",
|
||||
"image_org.openstack__1__os_distro": "org.centos",
|
||||
"image_org.openstack__1__architecture": "x64",
|
||||
"image_os_type": "linux",
|
||||
"instance_type_root_gb": "20",
|
||||
"instance_type_name": "512MB Standard Instance",
|
||||
"image_image_type": "base",
|
||||
"instance_type_rxtx_factor": "80",
|
||||
"image_auto_disk_config": "True",
|
||||
"instance_type_vcpus": "1",
|
||||
"image_disk_format": "vhd",
|
||||
"instance_type_memory_mb": "512",
|
||||
"instance_type_swap": "512",
|
||||
"instance_type_flavorid": "2",
|
||||
"image_container_format": "ovf",
|
||||
"image_min_disk": 20
|
||||
},
|
||||
"task_state": null,
|
||||
"shutdown_terminate": false,
|
||||
"cell_name": null,
|
||||
"ephemeral_key_uuid": null,
|
||||
"locked": false,
|
||||
"name": "instance-[[[[UUID_1]]]]",
|
||||
"created_at": "[[[[DT_14]]]]",
|
||||
"locked_by": null,
|
||||
"launch_index": 0,
|
||||
"memory_mb": 512,
|
||||
"vcpus": 1,
|
||||
"image_ref": "[[[[UUID_2]]]]",
|
||||
"architecture": "x64",
|
||||
"auto_disk_config": true,
|
||||
"os_type": "linux",
|
||||
"metadata": {}
|
||||
},
|
||||
"self": null,
|
||||
"context": {
|
||||
"project_name": "[[[[tenant_id]]]]",
|
||||
"user_id": "[[[[user_id]]]]",
|
||||
"roles": [
|
||||
"checkmate",
|
||||
"object-store:default",
|
||||
"compute:default",
|
||||
"identity:user-admin",
|
||||
"admin"
|
||||
],
|
||||
"_read_deleted": "no",
|
||||
"timestamp": "[[[[DT_5]]]]",
|
||||
"auth_token": "[[[[XUUID_0]]]]",
|
||||
"remote_address": "[[[[V4_2]]]]",
|
||||
"quota_class": null,
|
||||
"is_admin": false,
|
||||
"glance_api_servers": null,
|
||||
"request_id": "req-[[[[UUID_0]]]]",
|
||||
"instance_lock_checked": false,
|
||||
"project_id": "[[[[tenant_id]]]]",
|
||||
"user_name": "[[[[user_id]]]]"
|
||||
}
|
||||
}
|
||||
},
|
||||
"priority": "ERROR",
|
||||
"_context_is_admin": false,
|
||||
"_context_user": "[[[[user_id]]]]",
|
||||
"publisher_id": "[[[[publisher_id]]]]",
|
||||
"message_id": "[[[[UUID_8]]]]",
|
||||
"_context_remote_address": "[[[[V4_2]]]]",
|
||||
"_context_roles": [
|
||||
"checkmate",
|
||||
"object-store:default",
|
||||
"compute:default",
|
||||
"identity:user-admin",
|
||||
"admin"
|
||||
],
|
||||
"timestamp": "[[[[DT_15]]]]",
|
||||
"_context_timestamp": "[[[[DT_5]]]]",
|
||||
"_unique_id": "[[[[XUUID_6]]]]",
|
||||
"_context_glance_api_servers": null,
|
||||
"_context_project_name": "[[[[tenant_id]]]]",
|
||||
"_context_read_deleted": "no",
|
||||
"_context_tenant": "[[[[tenant_id]]]]",
|
||||
"_context_instance_lock_checked": false,
|
||||
"_context_project_id": "[[[[tenant_id]]]]",
|
||||
"_context_user_name": "[[[[user_id]]]]"
|
||||
}
|
||||
]
|
File diff suppressed because it is too large
Load Diff
468
templates/compute.instance.resize.confirm.start_4.json
Normal file
468
templates/compute.instance.resize.confirm.start_4.json
Normal file
@ -0,0 +1,468 @@
|
||||
[
|
||||
{
|
||||
"xuuid": 6,
|
||||
"v4": 4,
|
||||
"time_map": {
|
||||
"[[[[DT_9]]]]": [
|
||||
0,
|
||||
2,
|
||||
847632
|
||||
],
|
||||
"[[[[DT_5]]]]": [
|
||||
0,
|
||||
0,
|
||||
60662
|
||||
],
|
||||
"[[[[DT_7]]]]": [
|
||||
0,
|
||||
2,
|
||||
60662
|
||||
],
|
||||
"[[[[DT_1]]]]": [
|
||||
-118,
|
||||
13673,
|
||||
60662
|
||||
],
|
||||
"[[[[DT_3]]]]": [
|
||||
-1,
|
||||
86399,
|
||||
121564
|
||||
],
|
||||
"[[[[DT_8]]]]": [
|
||||
0,
|
||||
2,
|
||||
813831
|
||||
],
|
||||
"[[[[DT_4]]]]": [
|
||||
-1,
|
||||
70103,
|
||||
60662
|
||||
],
|
||||
"[[[[DT_6]]]]": [
|
||||
0,
|
||||
0,
|
||||
305622
|
||||
],
|
||||
"[[[[DT_0]]]]": [
|
||||
-1,
|
||||
83460,
|
||||
60662
|
||||
],
|
||||
"[[[[DT_2]]]]": [
|
||||
0,
|
||||
0,
|
||||
0
|
||||
]
|
||||
},
|
||||
"uuid": 9,
|
||||
"v6": 1
|
||||
},
|
||||
{
|
||||
"_context_request_id": "req-[[[[UUID_0]]]]",
|
||||
"_context_quota_class": null,
|
||||
"event_type": "compute.instance.resize.confirm.start",
|
||||
"_context_auth_token": "[[[[XUUID_0]]]]",
|
||||
"_context_user_id": "[[[[XUUID_1]]]]",
|
||||
"payload": {
|
||||
"state_description": "",
|
||||
"availability_zone": null,
|
||||
"terminated_at": "",
|
||||
"ephemeral_gb": 0,
|
||||
"instance_type_id": 7,
|
||||
"deleted_at": "",
|
||||
"reservation_id": "[[[[reservation_id]]]]",
|
||||
"instance_id": "[[[[UUID_1]]]]",
|
||||
"user_id": "[[[[XUUID_1]]]]",
|
||||
"hostname": "[[[[hostname]]]]",
|
||||
"state": "resized",
|
||||
"launched_at": "[[[[DT_0]]]]",
|
||||
"metadata": {},
|
||||
"node": "[[[[node]]]]",
|
||||
"ramdisk_id": "",
|
||||
"access_ip_v6": "[[[[V6_0]]]]",
|
||||
"disk_gb": 620,
|
||||
"access_ip_v4": "[[[[V4_0]]]]",
|
||||
"kernel_id": "",
|
||||
"host": "[[[[host]]]]",
|
||||
"display_name": "[[[[display_name]]]]",
|
||||
"image_ref_url": "http://[[[[V4_1]]]]:9292/images/[[[[UUID_2]]]]",
|
||||
"root_gb": 620,
|
||||
"tenant_id": "[[[[tenant_id]]]]",
|
||||
"created_at": "[[[[DT_1]]]]",
|
||||
"memory_mb": 15360,
|
||||
"instance_type": "15GB Standard Instance",
|
||||
"vcpus": 6,
|
||||
"image_meta": {
|
||||
"container_format": "ovf",
|
||||
"min_ram": "2048",
|
||||
"instance_type_id": "6",
|
||||
"base_image_ref": "[[[[UUID_3]]]]",
|
||||
"org.openstack__1__os_distro": "com.microsoft.server",
|
||||
"image_type": "snapshot",
|
||||
"org.openstack__1__os_version": "2008.2",
|
||||
"disk_format": "vhd",
|
||||
"instance_type_ephemeral_gb": "0",
|
||||
"org.openstack__1__architecture": "x64",
|
||||
"instance_type_vcpu_weight": "14",
|
||||
"instance_type_root_gb": "320",
|
||||
"instance_type_name": "8GB Standard Instance",
|
||||
"instance_type_rxtx_factor": "600.0",
|
||||
"auto_disk_config": "False",
|
||||
"min_disk": "320",
|
||||
"instance_type_vcpus": "4",
|
||||
"instance_uuid": "[[[[UUID_4]]]]",
|
||||
"instance_type_memory_mb": "8192",
|
||||
"instance_type_swap": "2048",
|
||||
"user_id": "[[[[XUUID_1]]]]",
|
||||
"instance_type_flavorid": "6",
|
||||
"os_type": "windows"
|
||||
},
|
||||
"architecture": "x64",
|
||||
"os_type": "windows",
|
||||
"instance_flavor_id": "7"
|
||||
},
|
||||
"priority": "INFO",
|
||||
"_context_is_admin": false,
|
||||
"_context_user": "[[[[XUUID_1]]]]",
|
||||
"publisher_id": "[[[[publisher_id]]]]",
|
||||
"message_id": "[[[[UUID_5]]]]",
|
||||
"_context_remote_address": "[[[[V4_2]]]]",
|
||||
"_context_roles": [
|
||||
"identity:user-admin",
|
||||
"object-store:default",
|
||||
"compute:default",
|
||||
"checkmate",
|
||||
"admin"
|
||||
],
|
||||
"timestamp": "[[[[DT_2]]]]",
|
||||
"_context_timestamp": "[[[[DT_3]]]]",
|
||||
"_unique_id": "[[[[XUUID_2]]]]",
|
||||
"_context_glance_api_servers": null,
|
||||
"_context_project_name": "[[[[tenant_id]]]]",
|
||||
"_context_read_deleted": "no",
|
||||
"_context_tenant": "[[[[tenant_id]]]]",
|
||||
"_context_instance_lock_checked": false,
|
||||
"_context_project_id": "[[[[tenant_id]]]]",
|
||||
"_context_user_name": "[[[[user_id]]]]"
|
||||
},
|
||||
{
|
||||
"_context_request_id": "req-[[[[UUID_0]]]]",
|
||||
"_context_quota_class": null,
|
||||
"event_type": "compute.instance.update",
|
||||
"_context_auth_token": "[[[[XUUID_0]]]]",
|
||||
"_context_user_id": "[[[[XUUID_1]]]]",
|
||||
"payload": {
|
||||
"state_description": "",
|
||||
"availability_zone": null,
|
||||
"terminated_at": "",
|
||||
"ephemeral_gb": 0,
|
||||
"instance_type_id": 7,
|
||||
"bandwidth": {
|
||||
"public": {
|
||||
"bw_in": 7178315,
|
||||
"bw_out": 55885477
|
||||
},
|
||||
"private": {
|
||||
"bw_in": 78288,
|
||||
"bw_out": 28708
|
||||
}
|
||||
},
|
||||
"deleted_at": "",
|
||||
"reservation_id": "[[[[reservation_id]]]]",
|
||||
"instance_id": "[[[[UUID_1]]]]",
|
||||
"user_id": "[[[[XUUID_1]]]]",
|
||||
"hostname": "[[[[hostname]]]]",
|
||||
"state": "resized",
|
||||
"old_state": null,
|
||||
"old_task_state": null,
|
||||
"metadata": {},
|
||||
"node": "[[[[node]]]]",
|
||||
"ramdisk_id": "",
|
||||
"access_ip_v6": "[[[[V6_0]]]]",
|
||||
"disk_gb": 620,
|
||||
"access_ip_v4": "[[[[V4_0]]]]",
|
||||
"kernel_id": "",
|
||||
"host": "[[[[host]]]]",
|
||||
"display_name": "[[[[display_name]]]]",
|
||||
"image_ref_url": "http://[[[[V4_1]]]]:9292/images/[[[[UUID_2]]]]",
|
||||
"audit_period_beginning": "[[[[DT_4]]]]",
|
||||
"root_gb": 620,
|
||||
"tenant_id": "[[[[tenant_id]]]]",
|
||||
"created_at": "[[[[DT_1]]]]",
|
||||
"launched_at": "[[[[DT_0]]]]",
|
||||
"memory_mb": 15360,
|
||||
"instance_type": "15GB Standard Instance",
|
||||
"vcpus": 6,
|
||||
"image_meta": {
|
||||
"container_format": "ovf",
|
||||
"min_ram": "2048",
|
||||
"instance_type_id": "6",
|
||||
"base_image_ref": "[[[[UUID_3]]]]",
|
||||
"org.openstack__1__os_distro": "com.microsoft.server",
|
||||
"image_type": "snapshot",
|
||||
"org.openstack__1__os_version": "2008.2",
|
||||
"disk_format": "vhd",
|
||||
"instance_type_ephemeral_gb": "0",
|
||||
"org.openstack__1__architecture": "x64",
|
||||
"instance_type_vcpu_weight": "14",
|
||||
"instance_type_root_gb": "320",
|
||||
"instance_type_name": "8GB Standard Instance",
|
||||
"instance_type_rxtx_factor": "600.0",
|
||||
"auto_disk_config": "False",
|
||||
"min_disk": "320",
|
||||
"instance_type_vcpus": "4",
|
||||
"instance_uuid": "[[[[UUID_4]]]]",
|
||||
"instance_type_memory_mb": "8192",
|
||||
"instance_type_swap": "2048",
|
||||
"user_id": "[[[[XUUID_1]]]]",
|
||||
"instance_type_flavorid": "6",
|
||||
"os_type": "windows"
|
||||
},
|
||||
"architecture": "x64",
|
||||
"new_task_state": null,
|
||||
"audit_period_ending": "[[[[DT_5]]]]",
|
||||
"os_type": "windows",
|
||||
"instance_flavor_id": "7"
|
||||
},
|
||||
"priority": "INFO",
|
||||
"_context_is_admin": false,
|
||||
"_context_user": "[[[[XUUID_1]]]]",
|
||||
"publisher_id": "[[[[publisher_id]]]]",
|
||||
"message_id": "[[[[UUID_6]]]]",
|
||||
"_context_remote_address": "[[[[V4_2]]]]",
|
||||
"_context_roles": [
|
||||
"identity:user-admin",
|
||||
"object-store:default",
|
||||
"compute:default",
|
||||
"checkmate",
|
||||
"admin"
|
||||
],
|
||||
"timestamp": "[[[[DT_6]]]]",
|
||||
"_context_timestamp": "[[[[DT_3]]]]",
|
||||
"_unique_id": "[[[[XUUID_3]]]]",
|
||||
"_context_glance_api_servers": null,
|
||||
"_context_project_name": "[[[[tenant_id]]]]",
|
||||
"_context_read_deleted": "no",
|
||||
"_context_tenant": "[[[[tenant_id]]]]",
|
||||
"_context_instance_lock_checked": false,
|
||||
"_context_project_id": "[[[[tenant_id]]]]",
|
||||
"_context_user_name": "[[[[user_id]]]]"
|
||||
},
|
||||
{
|
||||
"_context_request_id": "req-[[[[UUID_0]]]]",
|
||||
"_context_quota_class": null,
|
||||
"event_type": "compute.instance.update",
|
||||
"_context_auth_token": "[[[[XUUID_0]]]]",
|
||||
"_context_user_id": "[[[[XUUID_1]]]]",
|
||||
"payload": {
|
||||
"state_description": "",
|
||||
"availability_zone": null,
|
||||
"terminated_at": "",
|
||||
"ephemeral_gb": 0,
|
||||
"instance_type_id": 7,
|
||||
"bandwidth": {
|
||||
"public": {
|
||||
"bw_in": 7178315,
|
||||
"bw_out": 55885477
|
||||
},
|
||||
"private": {
|
||||
"bw_in": 78288,
|
||||
"bw_out": 28708
|
||||
}
|
||||
},
|
||||
"deleted_at": "",
|
||||
"reservation_id": "[[[[reservation_id]]]]",
|
||||
"instance_id": "[[[[UUID_1]]]]",
|
||||
"user_id": "[[[[XUUID_1]]]]",
|
||||
"hostname": "[[[[hostname]]]]",
|
||||
"state": "active",
|
||||
"old_state": "resized",
|
||||
"old_task_state": null,
|
||||
"metadata": {},
|
||||
"node": "[[[[node]]]]",
|
||||
"ramdisk_id": "",
|
||||
"access_ip_v6": "[[[[V6_0]]]]",
|
||||
"disk_gb": 620,
|
||||
"access_ip_v4": "[[[[V4_0]]]]",
|
||||
"kernel_id": "",
|
||||
"host": "[[[[host]]]]",
|
||||
"display_name": "[[[[display_name]]]]",
|
||||
"image_ref_url": "http://[[[[V4_1]]]]:9292/images/[[[[UUID_2]]]]",
|
||||
"audit_period_beginning": "[[[[DT_4]]]]",
|
||||
"root_gb": 620,
|
||||
"tenant_id": "[[[[tenant_id]]]]",
|
||||
"created_at": "[[[[DT_1]]]]",
|
||||
"launched_at": "[[[[DT_0]]]]",
|
||||
"memory_mb": 15360,
|
||||
"instance_type": "15GB Standard Instance",
|
||||
"vcpus": 6,
|
||||
"image_meta": {
|
||||
"container_format": "ovf",
|
||||
"min_ram": "2048",
|
||||
"instance_type_id": "6",
|
||||
"base_image_ref": "[[[[UUID_3]]]]",
|
||||
"org.openstack__1__os_distro": "com.microsoft.server",
|
||||
"image_type": "snapshot",
|
||||
"org.openstack__1__os_version": "2008.2",
|
||||
"disk_format": "vhd",
|
||||
"instance_type_ephemeral_gb": "0",
|
||||
"org.openstack__1__architecture": "x64",
|
||||
"instance_type_vcpu_weight": "14",
|
||||
"instance_type_root_gb": "320",
|
||||
"instance_type_name": "8GB Standard Instance",
|
||||
"instance_type_rxtx_factor": "600.0",
|
||||
"auto_disk_config": "False",
|
||||
"min_disk": "320",
|
||||
"instance_type_vcpus": "4",
|
||||
"instance_uuid": "[[[[UUID_4]]]]",
|
||||
"instance_type_memory_mb": "8192",
|
||||
"instance_type_swap": "2048",
|
||||
"user_id": "[[[[XUUID_1]]]]",
|
||||
"instance_type_flavorid": "6",
|
||||
"os_type": "windows"
|
||||
},
|
||||
"architecture": "x64",
|
||||
"new_task_state": null,
|
||||
"audit_period_ending": "[[[[DT_7]]]]",
|
||||
"os_type": "windows",
|
||||
"instance_flavor_id": "7"
|
||||
},
|
||||
"priority": "INFO",
|
||||
"_context_is_admin": false,
|
||||
"_context_user": "[[[[XUUID_1]]]]",
|
||||
"publisher_id": "[[[[publisher_id]]]]",
|
||||
"message_id": "[[[[UUID_7]]]]",
|
||||
"_context_remote_address": "[[[[V4_2]]]]",
|
||||
"_context_roles": [
|
||||
"identity:user-admin",
|
||||
"object-store:default",
|
||||
"compute:default",
|
||||
"checkmate",
|
||||
"admin"
|
||||
],
|
||||
"timestamp": "[[[[DT_8]]]]",
|
||||
"_context_timestamp": "[[[[DT_3]]]]",
|
||||
"_unique_id": "[[[[XUUID_4]]]]",
|
||||
"_context_glance_api_servers": null,
|
||||
"_context_project_name": "[[[[tenant_id]]]]",
|
||||
"_context_read_deleted": "no",
|
||||
"_context_tenant": "[[[[tenant_id]]]]",
|
||||
"_context_instance_lock_checked": false,
|
||||
"_context_project_id": "[[[[tenant_id]]]]",
|
||||
"_context_user_name": "[[[[user_id]]]]"
|
||||
},
|
||||
{
|
||||
"_context_request_id": "req-[[[[UUID_0]]]]",
|
||||
"_context_quota_class": null,
|
||||
"event_type": "compute.instance.resize.confirm.end",
|
||||
"_context_auth_token": "[[[[XUUID_0]]]]",
|
||||
"_context_user_id": "[[[[XUUID_1]]]]",
|
||||
"payload": {
|
||||
"state_description": "",
|
||||
"availability_zone": null,
|
||||
"terminated_at": "",
|
||||
"ephemeral_gb": 0,
|
||||
"instance_type_id": 7,
|
||||
"deleted_at": "",
|
||||
"reservation_id": "[[[[reservation_id]]]]",
|
||||
"instance_id": "[[[[UUID_1]]]]",
|
||||
"user_id": "[[[[XUUID_1]]]]",
|
||||
"fixed_ips": [
|
||||
{
|
||||
"floating_ips": [],
|
||||
"label": "public",
|
||||
"version": 6,
|
||||
"meta": {},
|
||||
"address": "[[[[V6_0]]]]",
|
||||
"type": "fixed"
|
||||
},
|
||||
{
|
||||
"floating_ips": [],
|
||||
"label": "public",
|
||||
"version": 4,
|
||||
"meta": {},
|
||||
"address": "[[[[V4_0]]]]",
|
||||
"type": "fixed"
|
||||
},
|
||||
{
|
||||
"floating_ips": [],
|
||||
"label": "private",
|
||||
"version": 4,
|
||||
"meta": {},
|
||||
"address": "[[[[V4_3]]]]",
|
||||
"type": "fixed"
|
||||
}
|
||||
],
|
||||
"hostname": "[[[[hostname]]]]",
|
||||
"state": "active",
|
||||
"launched_at": "[[[[DT_0]]]]",
|
||||
"metadata": {},
|
||||
"node": "[[[[node]]]]",
|
||||
"ramdisk_id": "",
|
||||
"access_ip_v6": "[[[[V6_0]]]]",
|
||||
"disk_gb": 620,
|
||||
"access_ip_v4": "[[[[V4_0]]]]",
|
||||
"kernel_id": "",
|
||||
"host": "[[[[host]]]]",
|
||||
"display_name": "[[[[display_name]]]]",
|
||||
"image_ref_url": "http://[[[[V4_1]]]]:9292/images/[[[[UUID_2]]]]",
|
||||
"root_gb": 620,
|
||||
"tenant_id": "[[[[tenant_id]]]]",
|
||||
"created_at": "[[[[DT_1]]]]",
|
||||
"memory_mb": 15360,
|
||||
"instance_type": "15GB Standard Instance",
|
||||
"vcpus": 6,
|
||||
"image_meta": {
|
||||
"container_format": "ovf",
|
||||
"min_ram": "2048",
|
||||
"instance_type_id": "6",
|
||||
"base_image_ref": "[[[[UUID_3]]]]",
|
||||
"org.openstack__1__os_distro": "com.microsoft.server",
|
||||
"image_type": "snapshot",
|
||||
"org.openstack__1__os_version": "2008.2",
|
||||
"disk_format": "vhd",
|
||||
"instance_type_ephemeral_gb": "0",
|
||||
"org.openstack__1__architecture": "x64",
|
||||
"instance_type_vcpu_weight": "14",
|
||||
"instance_type_root_gb": "320",
|
||||
"instance_type_name": "8GB Standard Instance",
|
||||
"instance_type_rxtx_factor": "600.0",
|
||||
"auto_disk_config": "False",
|
||||
"min_disk": "320",
|
||||
"instance_type_vcpus": "4",
|
||||
"instance_uuid": "[[[[UUID_4]]]]",
|
||||
"instance_type_memory_mb": "8192",
|
||||
"instance_type_swap": "2048",
|
||||
"user_id": "[[[[XUUID_1]]]]",
|
||||
"instance_type_flavorid": "6",
|
||||
"os_type": "windows"
|
||||
},
|
||||
"architecture": "x64",
|
||||
"os_type": "windows",
|
||||
"instance_flavor_id": "7"
|
||||
},
|
||||
"priority": "INFO",
|
||||
"_context_is_admin": false,
|
||||
"_context_user": "[[[[XUUID_1]]]]",
|
||||
"publisher_id": "[[[[publisher_id]]]]",
|
||||
"message_id": "[[[[UUID_8]]]]",
|
||||
"_context_remote_address": "[[[[V4_2]]]]",
|
||||
"_context_roles": [
|
||||
"identity:user-admin",
|
||||
"object-store:default",
|
||||
"compute:default",
|
||||
"checkmate",
|
||||
"admin"
|
||||
],
|
||||
"timestamp": "[[[[DT_9]]]]",
|
||||
"_context_timestamp": "[[[[DT_3]]]]",
|
||||
"_unique_id": "[[[[XUUID_5]]]]",
|
||||
"_context_glance_api_servers": null,
|
||||
"_context_project_name": "[[[[tenant_id]]]]",
|
||||
"_context_read_deleted": "no",
|
||||
"_context_tenant": "[[[[tenant_id]]]]",
|
||||
"_context_instance_lock_checked": false,
|
||||
"_context_project_id": "[[[[tenant_id]]]]",
|
||||
"_context_user_name": "[[[[user_id]]]]"
|
||||
}
|
||||
]
|
File diff suppressed because it is too large
Load Diff
722
templates/compute.instance.snapshot.start_7.json
Normal file
722
templates/compute.instance.snapshot.start_7.json
Normal file
@ -0,0 +1,722 @@
|
||||
[
|
||||
{
|
||||
"xuuid": 9,
|
||||
"v4": 5,
|
||||
"time_map": {
|
||||
"[[[[DT_9]]]]": [
|
||||
0,
|
||||
0,
|
||||
737938
|
||||
],
|
||||
"[[[[DT_12]]]]": [
|
||||
0,
|
||||
1,
|
||||
994605
|
||||
],
|
||||
"[[[[DT_5]]]]": [
|
||||
-1,
|
||||
86399,
|
||||
561864
|
||||
],
|
||||
"[[[[DT_7]]]]": [
|
||||
0,
|
||||
0,
|
||||
181146
|
||||
],
|
||||
"[[[[DT_1]]]]": [
|
||||
-1,
|
||||
59774,
|
||||
66988
|
||||
],
|
||||
"[[[[DT_3]]]]": [
|
||||
-1,
|
||||
86399,
|
||||
66988
|
||||
],
|
||||
"[[[[DT_14]]]]": [
|
||||
0,
|
||||
4,
|
||||
240909
|
||||
],
|
||||
"[[[[DT_8]]]]": [
|
||||
0,
|
||||
0,
|
||||
360786
|
||||
],
|
||||
"[[[[DT_10]]]]": [
|
||||
0,
|
||||
0,
|
||||
766059
|
||||
],
|
||||
"[[[[DT_4]]]]": [
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"[[[[DT_6]]]]": [
|
||||
0,
|
||||
0,
|
||||
66988
|
||||
],
|
||||
"[[[[DT_0]]]]": [
|
||||
-1,
|
||||
20635,
|
||||
66988
|
||||
],
|
||||
"[[[[DT_2]]]]": [
|
||||
-1,
|
||||
60669,
|
||||
66988
|
||||
],
|
||||
"[[[[DT_13]]]]": [
|
||||
0,
|
||||
4,
|
||||
66988
|
||||
],
|
||||
"[[[[DT_11]]]]": [
|
||||
0,
|
||||
1,
|
||||
66988
|
||||
]
|
||||
},
|
||||
"uuid": 10,
|
||||
"v6": 1
|
||||
},
|
||||
{
|
||||
"_context_request_id": "req-[[[[UUID_0]]]]",
|
||||
"_context_quota_class": null,
|
||||
"event_type": "compute.instance.update",
|
||||
"_context_auth_token": "[[[[XUUID_0]]]]",
|
||||
"_context_user_id": "[[[[XUUID_1]]]]",
|
||||
"payload": {
|
||||
"state_description": "image_snapshot_pending",
|
||||
"availability_zone": null,
|
||||
"terminated_at": "",
|
||||
"ephemeral_gb": 20,
|
||||
"instance_type_id": 10,
|
||||
"bandwidth": {},
|
||||
"deleted_at": "",
|
||||
"reservation_id": "[[[[reservation_id]]]]",
|
||||
"instance_id": "[[[[UUID_1]]]]",
|
||||
"user_id": "[[[[XUUID_1]]]]",
|
||||
"hostname": "[[[[hostname]]]]",
|
||||
"state": "active",
|
||||
"old_state": "active",
|
||||
"old_task_state": null,
|
||||
"metadata": {},
|
||||
"node": "[[[[node]]]]",
|
||||
"ramdisk_id": "",
|
||||
"access_ip_v6": "[[[[V6_0]]]]",
|
||||
"disk_gb": 60,
|
||||
"access_ip_v4": "[[[[V4_0]]]]",
|
||||
"kernel_id": "",
|
||||
"host": "[[[[host]]]]",
|
||||
"display_name": "[[[[display_name]]]]",
|
||||
"image_ref_url": "http://[[[[V4_1]]]]:9292/images/[[[[UUID_2]]]]",
|
||||
"audit_period_beginning": "[[[[DT_0]]]]",
|
||||
"root_gb": 40,
|
||||
"tenant_id": "[[[[tenant_id]]]]",
|
||||
"created_at": "[[[[DT_1]]]]",
|
||||
"launched_at": "[[[[DT_2]]]]",
|
||||
"memory_mb": 2048,
|
||||
"instance_type": "2 GB Performance",
|
||||
"vcpus": 2,
|
||||
"image_meta": {
|
||||
"container_format": "ovf",
|
||||
"min_ram": 2048,
|
||||
"base_image_ref": "[[[[UUID_2]]]]",
|
||||
"org.openstack__1__os_distro": "com.microsoft.server",
|
||||
"image_type": "base",
|
||||
"disk_format": "vhd",
|
||||
"org.openstack__1__architecture": "x64",
|
||||
"auto_disk_config": "disabled",
|
||||
"min_disk": 40,
|
||||
"cache_in_nova": "True",
|
||||
"os_type": "windows",
|
||||
"org.openstack__1__os_version": "2012.0"
|
||||
},
|
||||
"architecture": "x64",
|
||||
"new_task_state": "image_snapshot_pending",
|
||||
"audit_period_ending": "[[[[DT_3]]]]",
|
||||
"os_type": "windows",
|
||||
"instance_flavor_id": "performance1-2"
|
||||
},
|
||||
"priority": "INFO",
|
||||
"_context_is_admin": false,
|
||||
"_context_user": "[[[[XUUID_1]]]]",
|
||||
"publisher_id": "[[[[publisher_id]]]]",
|
||||
"message_id": "[[[[UUID_3]]]]",
|
||||
"_context_remote_address": "[[[[V4_2]]]]",
|
||||
"_context_roles": [
|
||||
"checkmate",
|
||||
"identity:user-admin",
|
||||
"object-store:default",
|
||||
"compute:default"
|
||||
],
|
||||
"timestamp": "[[[[DT_4]]]]",
|
||||
"_context_timestamp": "[[[[DT_5]]]]",
|
||||
"_unique_id": "[[[[XUUID_2]]]]",
|
||||
"_context_glance_api_servers": null,
|
||||
"_context_project_name": "[[[[tenant_id]]]]",
|
||||
"_context_read_deleted": "no",
|
||||
"_context_tenant": "[[[[tenant_id]]]]",
|
||||
"_context_instance_lock_checked": false,
|
||||
"_context_project_id": "[[[[tenant_id]]]]",
|
||||
"_context_user_name": "[[[[user_id]]]]"
|
||||
},
|
||||
{
|
||||
"_context_request_id": "req-[[[[UUID_0]]]]",
|
||||
"_context_quota_class": null,
|
||||
"event_type": "compute.instance.update",
|
||||
"_context_auth_token": "[[[[XUUID_0]]]]",
|
||||
"_context_user_id": "[[[[XUUID_1]]]]",
|
||||
"payload": {
|
||||
"state_description": "image_snapshot_pending",
|
||||
"availability_zone": null,
|
||||
"terminated_at": "",
|
||||
"ephemeral_gb": 20,
|
||||
"instance_type_id": 10,
|
||||
"bandwidth": {
|
||||
"VGW": {
|
||||
"bw_in": 36983756,
|
||||
"bw_out": 8867403
|
||||
},
|
||||
"public": {
|
||||
"bw_in": 43640596,
|
||||
"bw_out": 12095896
|
||||
},
|
||||
"private": {
|
||||
"bw_in": 19665498,
|
||||
"bw_out": 1210525
|
||||
}
|
||||
},
|
||||
"deleted_at": "",
|
||||
"reservation_id": "[[[[reservation_id]]]]",
|
||||
"instance_id": "[[[[UUID_1]]]]",
|
||||
"user_id": "[[[[XUUID_1]]]]",
|
||||
"hostname": "[[[[hostname]]]]",
|
||||
"state": "active",
|
||||
"old_state": "active",
|
||||
"old_task_state": null,
|
||||
"metadata": {},
|
||||
"node": "[[[[node]]]]",
|
||||
"ramdisk_id": "",
|
||||
"access_ip_v6": "[[[[V6_0]]]]",
|
||||
"disk_gb": 60,
|
||||
"access_ip_v4": "[[[[V4_0]]]]",
|
||||
"kernel_id": "",
|
||||
"host": "[[[[host]]]]",
|
||||
"display_name": "[[[[display_name]]]]",
|
||||
"image_ref_url": "http://[[[[V4_3]]]]:9292/images/[[[[UUID_2]]]]",
|
||||
"audit_period_beginning": "[[[[DT_0]]]]",
|
||||
"root_gb": 40,
|
||||
"tenant_id": "[[[[tenant_id]]]]",
|
||||
"created_at": "[[[[DT_1]]]]",
|
||||
"launched_at": "[[[[DT_2]]]]",
|
||||
"memory_mb": 2048,
|
||||
"instance_type": "2 GB Performance",
|
||||
"vcpus": 2,
|
||||
"image_meta": {
|
||||
"container_format": "ovf",
|
||||
"min_ram": "2048",
|
||||
"base_image_ref": "[[[[UUID_2]]]]",
|
||||
"org.openstack__1__os_distro": "com.microsoft.server",
|
||||
"image_type": "base",
|
||||
"disk_format": "vhd",
|
||||
"org.openstack__1__architecture": "x64",
|
||||
"auto_disk_config": "disabled",
|
||||
"min_disk": "40",
|
||||
"cache_in_nova": "True",
|
||||
"os_type": "windows",
|
||||
"org.openstack__1__os_version": "2012.0"
|
||||
},
|
||||
"architecture": "x64",
|
||||
"new_task_state": "image_snapshot_pending",
|
||||
"audit_period_ending": "[[[[DT_6]]]]",
|
||||
"os_type": "windows",
|
||||
"instance_flavor_id": "performance1-2"
|
||||
},
|
||||
"priority": "INFO",
|
||||
"_context_is_admin": false,
|
||||
"_context_user": "[[[[XUUID_1]]]]",
|
||||
"publisher_id": "[[[[publisher_id]]]]",
|
||||
"message_id": "[[[[UUID_4]]]]",
|
||||
"_context_remote_address": "[[[[V4_2]]]]",
|
||||
"_context_roles": [
|
||||
"checkmate",
|
||||
"identity:user-admin",
|
||||
"object-store:default",
|
||||
"compute:default"
|
||||
],
|
||||
"timestamp": "[[[[DT_7]]]]",
|
||||
"_context_timestamp": "[[[[DT_5]]]]",
|
||||
"_unique_id": "[[[[XUUID_3]]]]",
|
||||
"_context_glance_api_servers": null,
|
||||
"_context_project_name": "[[[[tenant_id]]]]",
|
||||
"_context_read_deleted": "no",
|
||||
"_context_tenant": "[[[[tenant_id]]]]",
|
||||
"_context_instance_lock_checked": false,
|
||||
"_context_project_id": "[[[[tenant_id]]]]",
|
||||
"_context_user_name": "[[[[user_id]]]]"
|
||||
},
|
||||
{
|
||||
"_context_request_id": "req-[[[[UUID_0]]]]",
|
||||
"_context_quota_class": null,
|
||||
"event_type": "compute.instance.update",
|
||||
"_context_auth_token": "[[[[XUUID_0]]]]",
|
||||
"_context_user_id": "[[[[XUUID_1]]]]",
|
||||
"payload": {
|
||||
"state_description": "image_snapshot",
|
||||
"availability_zone": null,
|
||||
"terminated_at": "",
|
||||
"ephemeral_gb": 20,
|
||||
"instance_type_id": 10,
|
||||
"bandwidth": {
|
||||
"VGW": {
|
||||
"bw_in": 36983756,
|
||||
"bw_out": 8867403
|
||||
},
|
||||
"public": {
|
||||
"bw_in": 43640596,
|
||||
"bw_out": 12095896
|
||||
},
|
||||
"private": {
|
||||
"bw_in": 19665498,
|
||||
"bw_out": 1210525
|
||||
}
|
||||
},
|
||||
"deleted_at": "",
|
||||
"reservation_id": "[[[[reservation_id]]]]",
|
||||
"instance_id": "[[[[UUID_1]]]]",
|
||||
"user_id": "[[[[XUUID_1]]]]",
|
||||
"hostname": "[[[[hostname]]]]",
|
||||
"state": "active",
|
||||
"old_state": "active",
|
||||
"old_task_state": "image_snapshot_pending",
|
||||
"metadata": {},
|
||||
"node": "[[[[node]]]]",
|
||||
"ramdisk_id": "",
|
||||
"access_ip_v6": "[[[[V6_0]]]]",
|
||||
"disk_gb": 60,
|
||||
"access_ip_v4": "[[[[V4_0]]]]",
|
||||
"kernel_id": "",
|
||||
"host": "[[[[host]]]]",
|
||||
"display_name": "[[[[display_name]]]]",
|
||||
"image_ref_url": "http://[[[[V4_4]]]]:9292/images/[[[[UUID_2]]]]",
|
||||
"audit_period_beginning": "[[[[DT_0]]]]",
|
||||
"root_gb": 40,
|
||||
"tenant_id": "[[[[tenant_id]]]]",
|
||||
"created_at": "[[[[DT_1]]]]",
|
||||
"launched_at": "[[[[DT_2]]]]",
|
||||
"memory_mb": 2048,
|
||||
"instance_type": "2 GB Performance",
|
||||
"vcpus": 2,
|
||||
"image_meta": {
|
||||
"container_format": "ovf",
|
||||
"min_ram": "2048",
|
||||
"base_image_ref": "[[[[UUID_2]]]]",
|
||||
"org.openstack__1__os_distro": "com.microsoft.server",
|
||||
"image_type": "base",
|
||||
"disk_format": "vhd",
|
||||
"org.openstack__1__architecture": "x64",
|
||||
"auto_disk_config": "disabled",
|
||||
"min_disk": "40",
|
||||
"cache_in_nova": "True",
|
||||
"os_type": "windows",
|
||||
"org.openstack__1__os_version": "2012.0"
|
||||
},
|
||||
"architecture": "x64",
|
||||
"new_task_state": "image_snapshot",
|
||||
"audit_period_ending": "[[[[DT_6]]]]",
|
||||
"os_type": "windows",
|
||||
"instance_flavor_id": "performance1-2"
|
||||
},
|
||||
"priority": "INFO",
|
||||
"_context_is_admin": false,
|
||||
"_context_user": "[[[[XUUID_1]]]]",
|
||||
"publisher_id": "[[[[publisher_id]]]]",
|
||||
"message_id": "[[[[UUID_5]]]]",
|
||||
"_context_remote_address": "[[[[V4_2]]]]",
|
||||
"_context_roles": [
|
||||
"checkmate",
|
||||
"identity:user-admin",
|
||||
"object-store:default",
|
||||
"compute:default"
|
||||
],
|
||||
"timestamp": "[[[[DT_8]]]]",
|
||||
"_context_timestamp": "[[[[DT_5]]]]",
|
||||
"_unique_id": "[[[[XUUID_4]]]]",
|
||||
"_context_glance_api_servers": null,
|
||||
"_context_project_name": "[[[[tenant_id]]]]",
|
||||
"_context_read_deleted": "no",
|
||||
"_context_tenant": "[[[[tenant_id]]]]",
|
||||
"_context_instance_lock_checked": false,
|
||||
"_context_project_id": "[[[[tenant_id]]]]",
|
||||
"_context_user_name": "[[[[user_id]]]]"
|
||||
},
|
||||
{
|
||||
"_context_request_id": "req-[[[[UUID_0]]]]",
|
||||
"_context_quota_class": null,
|
||||
"event_type": "compute.instance.update",
|
||||
"_context_auth_token": "[[[[XUUID_0]]]]",
|
||||
"_context_user_id": "[[[[XUUID_1]]]]",
|
||||
"payload": {
|
||||
"state_description": "image_snapshot",
|
||||
"availability_zone": null,
|
||||
"terminated_at": "",
|
||||
"ephemeral_gb": 20,
|
||||
"instance_type_id": 10,
|
||||
"bandwidth": {
|
||||
"VGW": {
|
||||
"bw_in": 36983756,
|
||||
"bw_out": 8867403
|
||||
},
|
||||
"public": {
|
||||
"bw_in": 43640596,
|
||||
"bw_out": 12095896
|
||||
},
|
||||
"private": {
|
||||
"bw_in": 19665498,
|
||||
"bw_out": 1210525
|
||||
}
|
||||
},
|
||||
"deleted_at": "",
|
||||
"reservation_id": "[[[[reservation_id]]]]",
|
||||
"instance_id": "[[[[UUID_1]]]]",
|
||||
"user_id": "[[[[XUUID_1]]]]",
|
||||
"hostname": "[[[[hostname]]]]",
|
||||
"state": "active",
|
||||
"old_state": null,
|
||||
"old_task_state": null,
|
||||
"metadata": {},
|
||||
"node": "[[[[node]]]]",
|
||||
"ramdisk_id": "",
|
||||
"access_ip_v6": "[[[[V6_0]]]]",
|
||||
"disk_gb": 60,
|
||||
"access_ip_v4": "[[[[V4_0]]]]",
|
||||
"kernel_id": "",
|
||||
"host": "[[[[host]]]]",
|
||||
"display_name": "[[[[display_name]]]]",
|
||||
"image_ref_url": "http://[[[[V4_4]]]]:9292/images/[[[[UUID_2]]]]",
|
||||
"audit_period_beginning": "[[[[DT_0]]]]",
|
||||
"root_gb": 40,
|
||||
"tenant_id": "[[[[tenant_id]]]]",
|
||||
"created_at": "[[[[DT_1]]]]",
|
||||
"launched_at": "[[[[DT_2]]]]",
|
||||
"memory_mb": 2048,
|
||||
"instance_type": "2 GB Performance",
|
||||
"vcpus": 2,
|
||||
"image_meta": {
|
||||
"container_format": "ovf",
|
||||
"min_ram": "2048",
|
||||
"base_image_ref": "[[[[UUID_2]]]]",
|
||||
"org.openstack__1__os_distro": "com.microsoft.server",
|
||||
"image_type": "base",
|
||||
"disk_format": "vhd",
|
||||
"org.openstack__1__architecture": "x64",
|
||||
"auto_disk_config": "disabled",
|
||||
"min_disk": "40",
|
||||
"cache_in_nova": "True",
|
||||
"os_type": "windows",
|
||||
"org.openstack__1__os_version": "2012.0"
|
||||
},
|
||||
"architecture": "x64",
|
||||
"new_task_state": "image_snapshot",
|
||||
"audit_period_ending": "[[[[DT_6]]]]",
|
||||
"os_type": "windows",
|
||||
"instance_flavor_id": "performance1-2"
|
||||
},
|
||||
"priority": "INFO",
|
||||
"_context_is_admin": false,
|
||||
"_context_user": "[[[[XUUID_1]]]]",
|
||||
"publisher_id": "[[[[publisher_id]]]]",
|
||||
"message_id": "[[[[UUID_6]]]]",
|
||||
"_context_remote_address": "[[[[V4_2]]]]",
|
||||
"_context_roles": [
|
||||
"checkmate",
|
||||
"identity:user-admin",
|
||||
"object-store:default",
|
||||
"compute:default",
|
||||
"admin"
|
||||
],
|
||||
"timestamp": "[[[[DT_9]]]]",
|
||||
"_context_timestamp": "[[[[DT_5]]]]",
|
||||
"_unique_id": "[[[[XUUID_5]]]]",
|
||||
"_context_glance_api_servers": null,
|
||||
"_context_project_name": "[[[[tenant_id]]]]",
|
||||
"_context_read_deleted": "no",
|
||||
"_context_tenant": "[[[[tenant_id]]]]",
|
||||
"_context_instance_lock_checked": false,
|
||||
"_context_project_id": "[[[[tenant_id]]]]",
|
||||
"_context_user_name": "[[[[user_id]]]]"
|
||||
},
|
||||
{
|
||||
"_context_request_id": "req-[[[[UUID_0]]]]",
|
||||
"_context_quota_class": null,
|
||||
"event_type": "compute.instance.snapshot.start",
|
||||
"_context_auth_token": "[[[[XUUID_0]]]]",
|
||||
"_context_user_id": "[[[[XUUID_1]]]]",
|
||||
"payload": {
|
||||
"state_description": "image_snapshot",
|
||||
"availability_zone": null,
|
||||
"terminated_at": "",
|
||||
"ephemeral_gb": 20,
|
||||
"instance_type_id": 10,
|
||||
"deleted_at": "",
|
||||
"reservation_id": "[[[[reservation_id]]]]",
|
||||
"instance_id": "[[[[UUID_1]]]]",
|
||||
"user_id": "[[[[XUUID_1]]]]",
|
||||
"hostname": "[[[[hostname]]]]",
|
||||
"state": "active",
|
||||
"launched_at": "[[[[DT_2]]]]",
|
||||
"metadata": {},
|
||||
"node": "[[[[node]]]]",
|
||||
"ramdisk_id": "",
|
||||
"access_ip_v6": "[[[[V6_0]]]]",
|
||||
"disk_gb": 60,
|
||||
"access_ip_v4": "[[[[V4_0]]]]",
|
||||
"kernel_id": "",
|
||||
"host": "[[[[host]]]]",
|
||||
"display_name": "[[[[display_name]]]]",
|
||||
"image_ref_url": "http://[[[[V4_4]]]]:9292/images/[[[[UUID_2]]]]",
|
||||
"root_gb": 40,
|
||||
"tenant_id": "[[[[tenant_id]]]]",
|
||||
"created_at": "[[[[DT_1]]]]",
|
||||
"memory_mb": 2048,
|
||||
"instance_type": "2 GB Performance",
|
||||
"vcpus": 2,
|
||||
"image_meta": {
|
||||
"container_format": "ovf",
|
||||
"min_ram": "2048",
|
||||
"base_image_ref": "[[[[UUID_2]]]]",
|
||||
"org.openstack__1__os_distro": "com.microsoft.server",
|
||||
"image_type": "base",
|
||||
"disk_format": "vhd",
|
||||
"org.openstack__1__architecture": "x64",
|
||||
"auto_disk_config": "disabled",
|
||||
"min_disk": "40",
|
||||
"cache_in_nova": "True",
|
||||
"os_type": "windows",
|
||||
"org.openstack__1__os_version": "2012.0"
|
||||
},
|
||||
"architecture": "x64",
|
||||
"os_type": "windows",
|
||||
"instance_flavor_id": "performance1-2"
|
||||
},
|
||||
"priority": "INFO",
|
||||
"_context_is_admin": true,
|
||||
"_context_user": "[[[[XUUID_1]]]]",
|
||||
"publisher_id": "[[[[publisher_id]]]]",
|
||||
"message_id": "[[[[UUID_7]]]]",
|
||||
"_context_remote_address": "[[[[V4_2]]]]",
|
||||
"_context_roles": [
|
||||
"checkmate",
|
||||
"identity:user-admin",
|
||||
"object-store:default",
|
||||
"compute:default",
|
||||
"admin"
|
||||
],
|
||||
"timestamp": "[[[[DT_10]]]]",
|
||||
"_context_timestamp": "[[[[DT_5]]]]",
|
||||
"_unique_id": "[[[[XUUID_6]]]]",
|
||||
"_context_glance_api_servers": null,
|
||||
"_context_project_name": "[[[[tenant_id]]]]",
|
||||
"_context_read_deleted": "no",
|
||||
"_context_tenant": "[[[[tenant_id]]]]",
|
||||
"_context_instance_lock_checked": false,
|
||||
"_context_project_id": "[[[[tenant_id]]]]",
|
||||
"_context_user_name": "[[[[user_id]]]]"
|
||||
},
|
||||
{
|
||||
"_context_request_id": "req-[[[[UUID_0]]]]",
|
||||
"_context_quota_class": null,
|
||||
"event_type": "compute.instance.update",
|
||||
"_context_auth_token": "[[[[XUUID_0]]]]",
|
||||
"_context_user_id": "[[[[XUUID_1]]]]",
|
||||
"payload": {
|
||||
"state_description": "image_pending_upload",
|
||||
"availability_zone": null,
|
||||
"terminated_at": "",
|
||||
"ephemeral_gb": 20,
|
||||
"instance_type_id": 10,
|
||||
"bandwidth": {
|
||||
"VGW": {
|
||||
"bw_in": 36983756,
|
||||
"bw_out": 8867403
|
||||
},
|
||||
"public": {
|
||||
"bw_in": 43640596,
|
||||
"bw_out": 12095896
|
||||
},
|
||||
"private": {
|
||||
"bw_in": 19665498,
|
||||
"bw_out": 1210525
|
||||
}
|
||||
},
|
||||
"deleted_at": "",
|
||||
"reservation_id": "[[[[reservation_id]]]]",
|
||||
"instance_id": "[[[[UUID_1]]]]",
|
||||
"user_id": "[[[[XUUID_1]]]]",
|
||||
"hostname": "[[[[hostname]]]]",
|
||||
"state": "active",
|
||||
"old_state": "active",
|
||||
"old_task_state": "image_snapshot",
|
||||
"metadata": {},
|
||||
"node": "[[[[node]]]]",
|
||||
"ramdisk_id": "",
|
||||
"access_ip_v6": "[[[[V6_0]]]]",
|
||||
"disk_gb": 60,
|
||||
"access_ip_v4": "[[[[V4_0]]]]",
|
||||
"kernel_id": "",
|
||||
"host": "[[[[host]]]]",
|
||||
"display_name": "[[[[display_name]]]]",
|
||||
"image_ref_url": "http://[[[[V4_4]]]]:9292/images/[[[[UUID_2]]]]",
|
||||
"audit_period_beginning": "[[[[DT_0]]]]",
|
||||
"root_gb": 40,
|
||||
"tenant_id": "[[[[tenant_id]]]]",
|
||||
"created_at": "[[[[DT_1]]]]",
|
||||
"launched_at": "[[[[DT_2]]]]",
|
||||
"memory_mb": 2048,
|
||||
"instance_type": "2 GB Performance",
|
||||
"vcpus": 2,
|
||||
"image_meta": {
|
||||
"container_format": "ovf",
|
||||
"min_ram": "2048",
|
||||
"base_image_ref": "[[[[UUID_2]]]]",
|
||||
"org.openstack__1__os_distro": "com.microsoft.server",
|
||||
"image_type": "base",
|
||||
"disk_format": "vhd",
|
||||
"org.openstack__1__architecture": "x64",
|
||||
"auto_disk_config": "disabled",
|
||||
"min_disk": "40",
|
||||
"cache_in_nova": "True",
|
||||
"os_type": "windows",
|
||||
"org.openstack__1__os_version": "2012.0"
|
||||
},
|
||||
"architecture": "x64",
|
||||
"new_task_state": "image_pending_upload",
|
||||
"audit_period_ending": "[[[[DT_11]]]]",
|
||||
"os_type": "windows",
|
||||
"instance_flavor_id": "performance1-2"
|
||||
},
|
||||
"priority": "INFO",
|
||||
"_context_is_admin": false,
|
||||
"_context_user": "[[[[XUUID_1]]]]",
|
||||
"publisher_id": "[[[[publisher_id]]]]",
|
||||
"message_id": "[[[[UUID_8]]]]",
|
||||
"_context_remote_address": "[[[[V4_2]]]]",
|
||||
"_context_roles": [
|
||||
"checkmate",
|
||||
"identity:user-admin",
|
||||
"object-store:default",
|
||||
"compute:default",
|
||||
"admin"
|
||||
],
|
||||
"timestamp": "[[[[DT_12]]]]",
|
||||
"_context_timestamp": "[[[[DT_5]]]]",
|
||||
"_unique_id": "[[[[XUUID_7]]]]",
|
||||
"_context_glance_api_servers": null,
|
||||
"_context_project_name": "[[[[tenant_id]]]]",
|
||||
"_context_read_deleted": "no",
|
||||
"_context_tenant": "[[[[tenant_id]]]]",
|
||||
"_context_instance_lock_checked": false,
|
||||
"_context_project_id": "[[[[tenant_id]]]]",
|
||||
"_context_user_name": "[[[[user_id]]]]"
|
||||
},
|
||||
{
|
||||
"_context_request_id": "req-[[[[UUID_0]]]]",
|
||||
"_context_quota_class": null,
|
||||
"event_type": "compute.instance.update",
|
||||
"_context_auth_token": "[[[[XUUID_0]]]]",
|
||||
"_context_user_id": "[[[[XUUID_1]]]]",
|
||||
"payload": {
|
||||
"state_description": "image_uploading",
|
||||
"availability_zone": null,
|
||||
"terminated_at": "",
|
||||
"ephemeral_gb": 20,
|
||||
"instance_type_id": 10,
|
||||
"bandwidth": {
|
||||
"VGW": {
|
||||
"bw_in": 36983756,
|
||||
"bw_out": 8867403
|
||||
},
|
||||
"public": {
|
||||
"bw_in": 43640596,
|
||||
"bw_out": 12095896
|
||||
},
|
||||
"private": {
|
||||
"bw_in": 19665498,
|
||||
"bw_out": 1210525
|
||||
}
|
||||
},
|
||||
"deleted_at": "",
|
||||
"reservation_id": "[[[[reservation_id]]]]",
|
||||
"instance_id": "[[[[UUID_1]]]]",
|
||||
"user_id": "[[[[XUUID_1]]]]",
|
||||
"hostname": "[[[[hostname]]]]",
|
||||
"state": "active",
|
||||
"old_state": "active",
|
||||
"old_task_state": "image_pending_upload",
|
||||
"metadata": {},
|
||||
"node": "[[[[node]]]]",
|
||||
"ramdisk_id": "",
|
||||
"access_ip_v6": "[[[[V6_0]]]]",
|
||||
"disk_gb": 60,
|
||||
"access_ip_v4": "[[[[V4_0]]]]",
|
||||
"kernel_id": "",
|
||||
"host": "[[[[host]]]]",
|
||||
"display_name": "[[[[display_name]]]]",
|
||||
"image_ref_url": "http://[[[[V4_4]]]]:9292/images/[[[[UUID_2]]]]",
|
||||
"audit_period_beginning": "[[[[DT_0]]]]",
|
||||
"root_gb": 40,
|
||||
"tenant_id": "[[[[tenant_id]]]]",
|
||||
"created_at": "[[[[DT_1]]]]",
|
||||
"launched_at": "[[[[DT_2]]]]",
|
||||
"memory_mb": 2048,
|
||||
"instance_type": "2 GB Performance",
|
||||
"vcpus": 2,
|
||||
"image_meta": {
|
||||
"container_format": "ovf",
|
||||
"min_ram": "2048",
|
||||
"base_image_ref": "[[[[UUID_2]]]]",
|
||||
"org.openstack__1__os_distro": "com.microsoft.server",
|
||||
"image_type": "base",
|
||||
"disk_format": "vhd",
|
||||
"org.openstack__1__architecture": "x64",
|
||||
"auto_disk_config": "disabled",
|
||||
"min_disk": "40",
|
||||
"cache_in_nova": "True",
|
||||
"os_type": "windows",
|
||||
"org.openstack__1__os_version": "2012.0"
|
||||
},
|
||||
"architecture": "x64",
|
||||
"new_task_state": "image_uploading",
|
||||
"audit_period_ending": "[[[[DT_13]]]]",
|
||||
"os_type": "windows",
|
||||
"instance_flavor_id": "performance1-2"
|
||||
},
|
||||
"priority": "INFO",
|
||||
"_context_is_admin": false,
|
||||
"_context_user": "[[[[XUUID_1]]]]",
|
||||
"publisher_id": "[[[[publisher_id]]]]",
|
||||
"message_id": "[[[[UUID_9]]]]",
|
||||
"_context_remote_address": "[[[[V4_2]]]]",
|
||||
"_context_roles": [
|
||||
"checkmate",
|
||||
"identity:user-admin",
|
||||
"object-store:default",
|
||||
"compute:default",
|
||||
"admin"
|
||||
],
|
||||
"timestamp": "[[[[DT_14]]]]",
|
||||
"_context_timestamp": "[[[[DT_5]]]]",
|
||||
"_unique_id": "[[[[XUUID_8]]]]",
|
||||
"_context_glance_api_servers": null,
|
||||
"_context_project_name": "[[[[tenant_id]]]]",
|
||||
"_context_read_deleted": "no",
|
||||
"_context_tenant": "[[[[tenant_id]]]]",
|
||||
"_context_instance_lock_checked": false,
|
||||
"_context_project_id": "[[[[tenant_id]]]]",
|
||||
"_context_user_name": "[[[[user_id]]]]"
|
||||
}
|
||||
]
|
File diff suppressed because it is too large
Load Diff
877
templates/compute.instance.snapshot.start_9.json
Normal file
877
templates/compute.instance.snapshot.start_9.json
Normal file
@ -0,0 +1,877 @@
|
||||
[
|
||||
{
|
||||
"xuuid": 10,
|
||||
"v4": 5,
|
||||
"time_map": {
|
||||
"[[[[DT_9]]]]": [
|
||||
0,
|
||||
0,
|
||||
792612
|
||||
],
|
||||
"[[[[DT_12]]]]": [
|
||||
0,
|
||||
110,
|
||||
823543
|
||||
],
|
||||
"[[[[DT_5]]]]": [
|
||||
-1,
|
||||
86399,
|
||||
359869
|
||||
],
|
||||
"[[[[DT_17]]]]": [
|
||||
0,
|
||||
756,
|
||||
987624
|
||||
],
|
||||
"[[[[DT_7]]]]": [
|
||||
0,
|
||||
0,
|
||||
351654
|
||||
],
|
||||
"[[[[DT_1]]]]": [
|
||||
-304,
|
||||
57369,
|
||||
823543
|
||||
],
|
||||
"[[[[DT_3]]]]": [
|
||||
-1,
|
||||
86399,
|
||||
823543
|
||||
],
|
||||
"[[[[DT_16]]]]": [
|
||||
0,
|
||||
756,
|
||||
958709
|
||||
],
|
||||
"[[[[DT_14]]]]": [
|
||||
0,
|
||||
121,
|
||||
291232
|
||||
],
|
||||
"[[[[DT_15]]]]": [
|
||||
0,
|
||||
756,
|
||||
823543
|
||||
],
|
||||
"[[[[DT_8]]]]": [
|
||||
0,
|
||||
0,
|
||||
766037
|
||||
],
|
||||
"[[[[DT_10]]]]": [
|
||||
0,
|
||||
1,
|
||||
823543
|
||||
],
|
||||
"[[[[DT_4]]]]": [
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"[[[[DT_6]]]]": [
|
||||
0,
|
||||
0,
|
||||
177603
|
||||
],
|
||||
"[[[[DT_0]]]]": [
|
||||
-1,
|
||||
110,
|
||||
823543
|
||||
],
|
||||
"[[[[DT_2]]]]": [
|
||||
-304,
|
||||
77855,
|
||||
823543
|
||||
],
|
||||
"[[[[DT_13]]]]": [
|
||||
0,
|
||||
120,
|
||||
823543
|
||||
],
|
||||
"[[[[DT_11]]]]": [
|
||||
0,
|
||||
2,
|
||||
735813
|
||||
]
|
||||
},
|
||||
"uuid": 12,
|
||||
"v6": 1
|
||||
},
|
||||
{
|
||||
"_context_request_id": "req-[[[[UUID_0]]]]",
|
||||
"_context_quota_class": null,
|
||||
"event_type": "compute.instance.update",
|
||||
"_context_auth_token": "[[[[XUUID_0]]]]",
|
||||
"_context_user_id": "[[[[user_id]]]]",
|
||||
"payload": {
|
||||
"state_description": "image_snapshot_pending",
|
||||
"availability_zone": null,
|
||||
"terminated_at": "",
|
||||
"ephemeral_gb": 0,
|
||||
"instance_type_id": 3,
|
||||
"bandwidth": {},
|
||||
"deleted_at": "",
|
||||
"reservation_id": "[[[[reservation_id]]]]",
|
||||
"instance_id": "[[[[UUID_1]]]]",
|
||||
"user_id": "[[[[user_id]]]]",
|
||||
"hostname": "[[[[hostname]]]]",
|
||||
"state": "active",
|
||||
"old_state": "active",
|
||||
"old_task_state": null,
|
||||
"metadata": {},
|
||||
"node": "[[[[node]]]]",
|
||||
"ramdisk_id": "",
|
||||
"access_ip_v6": "[[[[V6_0]]]]",
|
||||
"disk_gb": 40,
|
||||
"access_ip_v4": "[[[[V4_0]]]]",
|
||||
"kernel_id": "",
|
||||
"host": "[[[[host]]]]",
|
||||
"display_name": "[[[[display_name]]]]",
|
||||
"image_ref_url": "http://[[[[V4_1]]]]:9292/images/[[[[UUID_2]]]]",
|
||||
"audit_period_beginning": "[[[[DT_0]]]]",
|
||||
"root_gb": 40,
|
||||
"tenant_id": "[[[[tenant_id]]]]",
|
||||
"created_at": "[[[[DT_1]]]]",
|
||||
"launched_at": "[[[[DT_2]]]]",
|
||||
"memory_mb": 1024,
|
||||
"instance_type": "1GB Standard Instance",
|
||||
"vcpus": 1,
|
||||
"image_meta": {
|
||||
"container_format": "ovf",
|
||||
"min_ram": 512,
|
||||
"os_distro": "centos",
|
||||
"org.openstack__1__os_distro": "org.centos",
|
||||
"image_type": "base",
|
||||
"disk_format": "vhd",
|
||||
"org.openstack__1__architecture": "x64",
|
||||
"min_disk": 40,
|
||||
"cache_in_nova": "True",
|
||||
"auto_disk_config": "True",
|
||||
"os_type": "linux",
|
||||
"org.openstack__1__os_version": "6.4"
|
||||
},
|
||||
"architecture": null,
|
||||
"new_task_state": "image_snapshot_pending",
|
||||
"audit_period_ending": "[[[[DT_3]]]]",
|
||||
"os_type": "linux",
|
||||
"instance_flavor_id": "3"
|
||||
},
|
||||
"priority": "INFO",
|
||||
"_context_is_admin": false,
|
||||
"_context_user": "[[[[user_id]]]]",
|
||||
"publisher_id": "[[[[publisher_id]]]]",
|
||||
"message_id": "[[[[UUID_3]]]]",
|
||||
"_context_remote_address": "[[[[V4_2]]]]",
|
||||
"_context_roles": [
|
||||
"checkmate",
|
||||
"identity:user-admin",
|
||||
"object-store:default",
|
||||
"compute:default"
|
||||
],
|
||||
"timestamp": "[[[[DT_4]]]]",
|
||||
"_context_timestamp": "[[[[DT_5]]]]",
|
||||
"_unique_id": "[[[[XUUID_1]]]]",
|
||||
"_context_glance_api_servers": null,
|
||||
"_context_project_name": "[[[[tenant_id]]]]",
|
||||
"_context_read_deleted": "no",
|
||||
"_context_tenant": "[[[[tenant_id]]]]",
|
||||
"_context_instance_lock_checked": false,
|
||||
"_context_project_id": "[[[[tenant_id]]]]",
|
||||
"_context_user_name": "[[[[user_id]]]]"
|
||||
},
|
||||
{
|
||||
"_context_request_id": "req-[[[[UUID_0]]]]",
|
||||
"_context_quota_class": null,
|
||||
"event_type": "compute.instance.update",
|
||||
"_context_auth_token": "[[[[XUUID_0]]]]",
|
||||
"_context_user_id": "[[[[user_id]]]]",
|
||||
"payload": {
|
||||
"state_description": "image_snapshot_pending",
|
||||
"availability_zone": null,
|
||||
"terminated_at": "",
|
||||
"ephemeral_gb": 0,
|
||||
"instance_type_id": 3,
|
||||
"bandwidth": {
|
||||
"public": {
|
||||
"bw_in": 354164886,
|
||||
"bw_out": 1302012623
|
||||
},
|
||||
"private": {
|
||||
"bw_in": 1575488950,
|
||||
"bw_out": 3149617615
|
||||
}
|
||||
},
|
||||
"deleted_at": "",
|
||||
"reservation_id": "[[[[reservation_id]]]]",
|
||||
"instance_id": "[[[[UUID_1]]]]",
|
||||
"user_id": "[[[[user_id]]]]",
|
||||
"hostname": "[[[[hostname]]]]",
|
||||
"state": "active",
|
||||
"old_state": "active",
|
||||
"old_task_state": null,
|
||||
"metadata": {},
|
||||
"node": "[[[[node]]]]",
|
||||
"ramdisk_id": "",
|
||||
"access_ip_v6": "[[[[V6_0]]]]",
|
||||
"disk_gb": 40,
|
||||
"access_ip_v4": "[[[[V4_0]]]]",
|
||||
"kernel_id": "",
|
||||
"host": "[[[[host]]]]",
|
||||
"display_name": "[[[[display_name]]]]",
|
||||
"image_ref_url": "http://[[[[V4_3]]]]:9292/images/[[[[UUID_2]]]]",
|
||||
"audit_period_beginning": "[[[[DT_0]]]]",
|
||||
"root_gb": 40,
|
||||
"tenant_id": "[[[[tenant_id]]]]",
|
||||
"created_at": "[[[[DT_1]]]]",
|
||||
"launched_at": "[[[[DT_2]]]]",
|
||||
"memory_mb": 1024,
|
||||
"instance_type": "1GB Standard Instance",
|
||||
"vcpus": 1,
|
||||
"image_meta": {
|
||||
"container_format": "ovf",
|
||||
"min_ram": "512",
|
||||
"os_distro": "centos",
|
||||
"org.openstack__1__os_distro": "org.centos",
|
||||
"image_type": "base",
|
||||
"disk_format": "vhd",
|
||||
"org.openstack__1__architecture": "x64",
|
||||
"min_disk": "40",
|
||||
"cache_in_nova": "True",
|
||||
"auto_disk_config": "True",
|
||||
"os_type": "linux",
|
||||
"org.openstack__1__os_version": "6.4"
|
||||
},
|
||||
"architecture": null,
|
||||
"new_task_state": "image_snapshot_pending",
|
||||
"audit_period_ending": "[[[[DT_3]]]]",
|
||||
"os_type": "linux",
|
||||
"instance_flavor_id": "3"
|
||||
},
|
||||
"priority": "INFO",
|
||||
"_context_is_admin": false,
|
||||
"_context_user": "[[[[user_id]]]]",
|
||||
"publisher_id": "[[[[publisher_id]]]]",
|
||||
"message_id": "[[[[UUID_4]]]]",
|
||||
"_context_remote_address": "[[[[V4_2]]]]",
|
||||
"_context_roles": [
|
||||
"checkmate",
|
||||
"identity:user-admin",
|
||||
"object-store:default",
|
||||
"compute:default"
|
||||
],
|
||||
"timestamp": "[[[[DT_6]]]]",
|
||||
"_context_timestamp": "[[[[DT_5]]]]",
|
||||
"_unique_id": "[[[[XUUID_2]]]]",
|
||||
"_context_glance_api_servers": null,
|
||||
"_context_project_name": "[[[[tenant_id]]]]",
|
||||
"_context_read_deleted": "no",
|
||||
"_context_tenant": "[[[[tenant_id]]]]",
|
||||
"_context_instance_lock_checked": false,
|
||||
"_context_project_id": "[[[[tenant_id]]]]",
|
||||
"_context_user_name": "[[[[user_id]]]]"
|
||||
},
|
||||
{
|
||||
"_context_request_id": "req-[[[[UUID_0]]]]",
|
||||
"_context_quota_class": null,
|
||||
"event_type": "compute.instance.update",
|
||||
"_context_auth_token": "[[[[XUUID_0]]]]",
|
||||
"_context_user_id": "[[[[user_id]]]]",
|
||||
"payload": {
|
||||
"state_description": "image_snapshot",
|
||||
"availability_zone": null,
|
||||
"terminated_at": "",
|
||||
"ephemeral_gb": 0,
|
||||
"instance_type_id": 3,
|
||||
"bandwidth": {
|
||||
"public": {
|
||||
"bw_in": 354164886,
|
||||
"bw_out": 1302012623
|
||||
},
|
||||
"private": {
|
||||
"bw_in": 1575488950,
|
||||
"bw_out": 3149617615
|
||||
}
|
||||
},
|
||||
"deleted_at": "",
|
||||
"reservation_id": "[[[[reservation_id]]]]",
|
||||
"instance_id": "[[[[UUID_1]]]]",
|
||||
"user_id": "[[[[user_id]]]]",
|
||||
"hostname": "[[[[hostname]]]]",
|
||||
"state": "active",
|
||||
"old_state": "active",
|
||||
"old_task_state": "image_snapshot_pending",
|
||||
"metadata": {},
|
||||
"node": "[[[[node]]]]",
|
||||
"ramdisk_id": "",
|
||||
"access_ip_v6": "[[[[V6_0]]]]",
|
||||
"disk_gb": 40,
|
||||
"access_ip_v4": "[[[[V4_0]]]]",
|
||||
"kernel_id": "",
|
||||
"host": "[[[[host]]]]",
|
||||
"display_name": "[[[[display_name]]]]",
|
||||
"image_ref_url": "http://[[[[V4_4]]]]:9292/images/[[[[UUID_2]]]]",
|
||||
"audit_period_beginning": "[[[[DT_0]]]]",
|
||||
"root_gb": 40,
|
||||
"tenant_id": "[[[[tenant_id]]]]",
|
||||
"created_at": "[[[[DT_1]]]]",
|
||||
"launched_at": "[[[[DT_2]]]]",
|
||||
"memory_mb": 1024,
|
||||
"instance_type": "1GB Standard Instance",
|
||||
"vcpus": 1,
|
||||
"image_meta": {
|
||||
"container_format": "ovf",
|
||||
"min_ram": "512",
|
||||
"os_distro": "centos",
|
||||
"org.openstack__1__os_distro": "org.centos",
|
||||
"image_type": "base",
|
||||
"disk_format": "vhd",
|
||||
"org.openstack__1__architecture": "x64",
|
||||
"min_disk": "40",
|
||||
"cache_in_nova": "True",
|
||||
"auto_disk_config": "True",
|
||||
"os_type": "linux",
|
||||
"org.openstack__1__os_version": "6.4"
|
||||
},
|
||||
"architecture": null,
|
||||
"new_task_state": "image_snapshot",
|
||||
"audit_period_ending": "[[[[DT_3]]]]",
|
||||
"os_type": "linux",
|
||||
"instance_flavor_id": "3"
|
||||
},
|
||||
"priority": "INFO",
|
||||
"_context_is_admin": false,
|
||||
"_context_user": "[[[[user_id]]]]",
|
||||
"publisher_id": "[[[[publisher_id]]]]",
|
||||
"message_id": "[[[[UUID_5]]]]",
|
||||
"_context_remote_address": "[[[[V4_2]]]]",
|
||||
"_context_roles": [
|
||||
"checkmate",
|
||||
"identity:user-admin",
|
||||
"object-store:default",
|
||||
"compute:default"
|
||||
],
|
||||
"timestamp": "[[[[DT_7]]]]",
|
||||
"_context_timestamp": "[[[[DT_5]]]]",
|
||||
"_unique_id": "[[[[XUUID_3]]]]",
|
||||
"_context_glance_api_servers": null,
|
||||
"_context_project_name": "[[[[tenant_id]]]]",
|
||||
"_context_read_deleted": "no",
|
||||
"_context_tenant": "[[[[tenant_id]]]]",
|
||||
"_context_instance_lock_checked": false,
|
||||
"_context_project_id": "[[[[tenant_id]]]]",
|
||||
"_context_user_name": "[[[[user_id]]]]"
|
||||
},
|
||||
{
|
||||
"_context_request_id": "req-[[[[UUID_0]]]]",
|
||||
"_context_quota_class": null,
|
||||
"event_type": "compute.instance.update",
|
||||
"_context_auth_token": "[[[[XUUID_0]]]]",
|
||||
"_context_user_id": "[[[[user_id]]]]",
|
||||
"payload": {
|
||||
"state_description": "image_snapshot",
|
||||
"availability_zone": null,
|
||||
"terminated_at": "",
|
||||
"ephemeral_gb": 0,
|
||||
"instance_type_id": 3,
|
||||
"bandwidth": {
|
||||
"public": {
|
||||
"bw_in": 354164886,
|
||||
"bw_out": 1302012623
|
||||
},
|
||||
"private": {
|
||||
"bw_in": 1575488950,
|
||||
"bw_out": 3149617615
|
||||
}
|
||||
},
|
||||
"deleted_at": "",
|
||||
"reservation_id": "[[[[reservation_id]]]]",
|
||||
"instance_id": "[[[[UUID_1]]]]",
|
||||
"user_id": "[[[[user_id]]]]",
|
||||
"hostname": "[[[[hostname]]]]",
|
||||
"state": "active",
|
||||
"old_state": null,
|
||||
"old_task_state": null,
|
||||
"metadata": {},
|
||||
"node": "[[[[node]]]]",
|
||||
"ramdisk_id": "",
|
||||
"access_ip_v6": "[[[[V6_0]]]]",
|
||||
"disk_gb": 40,
|
||||
"access_ip_v4": "[[[[V4_0]]]]",
|
||||
"kernel_id": "",
|
||||
"host": "[[[[host]]]]",
|
||||
"display_name": "[[[[display_name]]]]",
|
||||
"image_ref_url": "http://[[[[V4_4]]]]:9292/images/[[[[UUID_2]]]]",
|
||||
"audit_period_beginning": "[[[[DT_0]]]]",
|
||||
"root_gb": 40,
|
||||
"tenant_id": "[[[[tenant_id]]]]",
|
||||
"created_at": "[[[[DT_1]]]]",
|
||||
"launched_at": "[[[[DT_2]]]]",
|
||||
"memory_mb": 1024,
|
||||
"instance_type": "1GB Standard Instance",
|
||||
"vcpus": 1,
|
||||
"image_meta": {
|
||||
"container_format": "ovf",
|
||||
"min_ram": "512",
|
||||
"os_distro": "centos",
|
||||
"org.openstack__1__os_distro": "org.centos",
|
||||
"image_type": "base",
|
||||
"disk_format": "vhd",
|
||||
"org.openstack__1__architecture": "x64",
|
||||
"min_disk": "40",
|
||||
"cache_in_nova": "True",
|
||||
"auto_disk_config": "True",
|
||||
"os_type": "linux",
|
||||
"org.openstack__1__os_version": "6.4"
|
||||
},
|
||||
"architecture": null,
|
||||
"new_task_state": "image_snapshot",
|
||||
"audit_period_ending": "[[[[DT_3]]]]",
|
||||
"os_type": "linux",
|
||||
"instance_flavor_id": "3"
|
||||
},
|
||||
"priority": "INFO",
|
||||
"_context_is_admin": false,
|
||||
"_context_user": "[[[[user_id]]]]",
|
||||
"publisher_id": "[[[[publisher_id]]]]",
|
||||
"message_id": "[[[[UUID_6]]]]",
|
||||
"_context_remote_address": "[[[[V4_2]]]]",
|
||||
"_context_roles": [
|
||||
"checkmate",
|
||||
"identity:user-admin",
|
||||
"object-store:default",
|
||||
"compute:default",
|
||||
"admin"
|
||||
],
|
||||
"timestamp": "[[[[DT_8]]]]",
|
||||
"_context_timestamp": "[[[[DT_5]]]]",
|
||||
"_unique_id": "[[[[XUUID_4]]]]",
|
||||
"_context_glance_api_servers": null,
|
||||
"_context_project_name": "[[[[tenant_id]]]]",
|
||||
"_context_read_deleted": "no",
|
||||
"_context_tenant": "[[[[tenant_id]]]]",
|
||||
"_context_instance_lock_checked": false,
|
||||
"_context_project_id": "[[[[tenant_id]]]]",
|
||||
"_context_user_name": "[[[[user_id]]]]"
|
||||
},
|
||||
{
|
||||
"_context_request_id": "req-[[[[UUID_0]]]]",
|
||||
"_context_quota_class": null,
|
||||
"event_type": "compute.instance.snapshot.start",
|
||||
"_context_auth_token": "[[[[XUUID_0]]]]",
|
||||
"_context_user_id": "[[[[user_id]]]]",
|
||||
"payload": {
|
||||
"state_description": "image_snapshot",
|
||||
"availability_zone": null,
|
||||
"terminated_at": "",
|
||||
"ephemeral_gb": 0,
|
||||
"instance_type_id": 3,
|
||||
"deleted_at": "",
|
||||
"reservation_id": "[[[[reservation_id]]]]",
|
||||
"instance_id": "[[[[UUID_1]]]]",
|
||||
"user_id": "[[[[user_id]]]]",
|
||||
"hostname": "[[[[hostname]]]]",
|
||||
"state": "active",
|
||||
"launched_at": "[[[[DT_2]]]]",
|
||||
"metadata": {},
|
||||
"node": "[[[[node]]]]",
|
||||
"ramdisk_id": "",
|
||||
"access_ip_v6": "[[[[V6_0]]]]",
|
||||
"disk_gb": 40,
|
||||
"access_ip_v4": "[[[[V4_0]]]]",
|
||||
"kernel_id": "",
|
||||
"host": "[[[[host]]]]",
|
||||
"display_name": "[[[[display_name]]]]",
|
||||
"image_ref_url": "http://[[[[V4_4]]]]:9292/images/[[[[UUID_2]]]]",
|
||||
"root_gb": 40,
|
||||
"tenant_id": "[[[[tenant_id]]]]",
|
||||
"created_at": "[[[[DT_1]]]]",
|
||||
"memory_mb": 1024,
|
||||
"instance_type": "1GB Standard Instance",
|
||||
"vcpus": 1,
|
||||
"image_meta": {
|
||||
"container_format": "ovf",
|
||||
"min_ram": "512",
|
||||
"os_distro": "centos",
|
||||
"org.openstack__1__os_distro": "org.centos",
|
||||
"image_type": "base",
|
||||
"disk_format": "vhd",
|
||||
"org.openstack__1__architecture": "x64",
|
||||
"min_disk": "40",
|
||||
"cache_in_nova": "True",
|
||||
"auto_disk_config": "True",
|
||||
"os_type": "linux",
|
||||
"org.openstack__1__os_version": "6.4"
|
||||
},
|
||||
"architecture": null,
|
||||
"os_type": "linux",
|
||||
"instance_flavor_id": "3"
|
||||
},
|
||||
"priority": "INFO",
|
||||
"_context_is_admin": true,
|
||||
"_context_user": "[[[[user_id]]]]",
|
||||
"publisher_id": "[[[[publisher_id]]]]",
|
||||
"message_id": "[[[[UUID_7]]]]",
|
||||
"_context_remote_address": "[[[[V4_2]]]]",
|
||||
"_context_roles": [
|
||||
"checkmate",
|
||||
"identity:user-admin",
|
||||
"object-store:default",
|
||||
"compute:default",
|
||||
"admin"
|
||||
],
|
||||
"timestamp": "[[[[DT_9]]]]",
|
||||
"_context_timestamp": "[[[[DT_5]]]]",
|
||||
"_unique_id": "[[[[XUUID_5]]]]",
|
||||
"_context_glance_api_servers": null,
|
||||
"_context_project_name": "[[[[tenant_id]]]]",
|
||||
"_context_read_deleted": "no",
|
||||
"_context_tenant": "[[[[tenant_id]]]]",
|
||||
"_context_instance_lock_checked": false,
|
||||
"_context_project_id": "[[[[tenant_id]]]]",
|
||||
"_context_user_name": "[[[[user_id]]]]"
|
||||
},
|
||||
{
|
||||
"_context_request_id": "req-[[[[UUID_0]]]]",
|
||||
"_context_quota_class": null,
|
||||
"event_type": "compute.instance.update",
|
||||
"_context_auth_token": "[[[[XUUID_0]]]]",
|
||||
"_context_user_id": "[[[[user_id]]]]",
|
||||
"payload": {
|
||||
"state_description": "image_pending_upload",
|
||||
"availability_zone": null,
|
||||
"terminated_at": "",
|
||||
"ephemeral_gb": 0,
|
||||
"instance_type_id": 3,
|
||||
"bandwidth": {
|
||||
"public": {
|
||||
"bw_in": 354164886,
|
||||
"bw_out": 1302012623
|
||||
},
|
||||
"private": {
|
||||
"bw_in": 1575488950,
|
||||
"bw_out": 3149617615
|
||||
}
|
||||
},
|
||||
"deleted_at": "",
|
||||
"reservation_id": "[[[[reservation_id]]]]",
|
||||
"instance_id": "[[[[UUID_1]]]]",
|
||||
"user_id": "[[[[user_id]]]]",
|
||||
"hostname": "[[[[hostname]]]]",
|
||||
"state": "active",
|
||||
"old_state": "active",
|
||||
"old_task_state": "image_snapshot",
|
||||
"metadata": {},
|
||||
"node": "[[[[node]]]]",
|
||||
"ramdisk_id": "",
|
||||
"access_ip_v6": "[[[[V6_0]]]]",
|
||||
"disk_gb": 40,
|
||||
"access_ip_v4": "[[[[V4_0]]]]",
|
||||
"kernel_id": "",
|
||||
"host": "[[[[host]]]]",
|
||||
"display_name": "[[[[display_name]]]]",
|
||||
"image_ref_url": "http://[[[[V4_4]]]]:9292/images/[[[[UUID_2]]]]",
|
||||
"audit_period_beginning": "[[[[DT_0]]]]",
|
||||
"root_gb": 40,
|
||||
"tenant_id": "[[[[tenant_id]]]]",
|
||||
"created_at": "[[[[DT_1]]]]",
|
||||
"launched_at": "[[[[DT_2]]]]",
|
||||
"memory_mb": 1024,
|
||||
"instance_type": "1GB Standard Instance",
|
||||
"vcpus": 1,
|
||||
"image_meta": {
|
||||
"container_format": "ovf",
|
||||
"min_ram": "512",
|
||||
"os_distro": "centos",
|
||||
"org.openstack__1__os_distro": "org.centos",
|
||||
"image_type": "base",
|
||||
"disk_format": "vhd",
|
||||
"org.openstack__1__architecture": "x64",
|
||||
"min_disk": "40",
|
||||
"cache_in_nova": "True",
|
||||
"auto_disk_config": "True",
|
||||
"os_type": "linux",
|
||||
"org.openstack__1__os_version": "6.4"
|
||||
},
|
||||
"architecture": null,
|
||||
"new_task_state": "image_pending_upload",
|
||||
"audit_period_ending": "[[[[DT_10]]]]",
|
||||
"os_type": "linux",
|
||||
"instance_flavor_id": "3"
|
||||
},
|
||||
"priority": "INFO",
|
||||
"_context_is_admin": false,
|
||||
"_context_user": "[[[[user_id]]]]",
|
||||
"publisher_id": "[[[[publisher_id]]]]",
|
||||
"message_id": "[[[[UUID_8]]]]",
|
||||
"_context_remote_address": "[[[[V4_2]]]]",
|
||||
"_context_roles": [
|
||||
"checkmate",
|
||||
"identity:user-admin",
|
||||
"object-store:default",
|
||||
"compute:default",
|
||||
"admin"
|
||||
],
|
||||
"timestamp": "[[[[DT_11]]]]",
|
||||
"_context_timestamp": "[[[[DT_5]]]]",
|
||||
"_unique_id": "[[[[XUUID_6]]]]",
|
||||
"_context_glance_api_servers": null,
|
||||
"_context_project_name": "[[[[tenant_id]]]]",
|
||||
"_context_read_deleted": "no",
|
||||
"_context_tenant": "[[[[tenant_id]]]]",
|
||||
"_context_instance_lock_checked": false,
|
||||
"_context_project_id": "[[[[tenant_id]]]]",
|
||||
"_context_user_name": "[[[[user_id]]]]"
|
||||
},
|
||||
{
|
||||
"_context_request_id": "req-[[[[UUID_0]]]]",
|
||||
"_context_quota_class": null,
|
||||
"event_type": "compute.instance.update",
|
||||
"_context_auth_token": "[[[[XUUID_0]]]]",
|
||||
"_context_user_id": "[[[[user_id]]]]",
|
||||
"payload": {
|
||||
"state_description": "image_uploading",
|
||||
"availability_zone": null,
|
||||
"terminated_at": "",
|
||||
"ephemeral_gb": 0,
|
||||
"instance_type_id": 3,
|
||||
"bandwidth": {},
|
||||
"deleted_at": "",
|
||||
"reservation_id": "[[[[reservation_id]]]]",
|
||||
"instance_id": "[[[[UUID_1]]]]",
|
||||
"user_id": "[[[[user_id]]]]",
|
||||
"hostname": "[[[[hostname]]]]",
|
||||
"state": "active",
|
||||
"old_state": "active",
|
||||
"old_task_state": "image_pending_upload",
|
||||
"metadata": {},
|
||||
"node": "[[[[node]]]]",
|
||||
"ramdisk_id": "",
|
||||
"access_ip_v6": "[[[[V6_0]]]]",
|
||||
"disk_gb": 40,
|
||||
"access_ip_v4": "[[[[V4_0]]]]",
|
||||
"kernel_id": "",
|
||||
"host": "[[[[host]]]]",
|
||||
"display_name": "[[[[display_name]]]]",
|
||||
"image_ref_url": "http://[[[[V4_4]]]]:9292/images/[[[[UUID_2]]]]",
|
||||
"audit_period_beginning": "[[[[DT_12]]]]",
|
||||
"root_gb": 40,
|
||||
"tenant_id": "[[[[tenant_id]]]]",
|
||||
"created_at": "[[[[DT_1]]]]",
|
||||
"launched_at": "[[[[DT_2]]]]",
|
||||
"memory_mb": 1024,
|
||||
"instance_type": "1GB Standard Instance",
|
||||
"vcpus": 1,
|
||||
"image_meta": {
|
||||
"container_format": "ovf",
|
||||
"min_ram": "512",
|
||||
"os_distro": "centos",
|
||||
"org.openstack__1__os_distro": "org.centos",
|
||||
"image_type": "base",
|
||||
"disk_format": "vhd",
|
||||
"org.openstack__1__architecture": "x64",
|
||||
"min_disk": "40",
|
||||
"cache_in_nova": "True",
|
||||
"auto_disk_config": "True",
|
||||
"os_type": "linux",
|
||||
"org.openstack__1__os_version": "6.4"
|
||||
},
|
||||
"architecture": null,
|
||||
"new_task_state": "image_uploading",
|
||||
"audit_period_ending": "[[[[DT_13]]]]",
|
||||
"os_type": "linux",
|
||||
"instance_flavor_id": "3"
|
||||
},
|
||||
"priority": "INFO",
|
||||
"_context_is_admin": false,
|
||||
"_context_user": "[[[[user_id]]]]",
|
||||
"publisher_id": "[[[[publisher_id]]]]",
|
||||
"message_id": "[[[[UUID_9]]]]",
|
||||
"_context_remote_address": "[[[[V4_2]]]]",
|
||||
"_context_roles": [
|
||||
"checkmate",
|
||||
"identity:user-admin",
|
||||
"object-store:default",
|
||||
"compute:default",
|
||||
"admin"
|
||||
],
|
||||
"timestamp": "[[[[DT_14]]]]",
|
||||
"_context_timestamp": "[[[[DT_5]]]]",
|
||||
"_unique_id": "[[[[XUUID_7]]]]",
|
||||
"_context_glance_api_servers": null,
|
||||
"_context_project_name": "[[[[tenant_id]]]]",
|
||||
"_context_read_deleted": "no",
|
||||
"_context_tenant": "[[[[tenant_id]]]]",
|
||||
"_context_instance_lock_checked": false,
|
||||
"_context_project_id": "[[[[tenant_id]]]]",
|
||||
"_context_user_name": "[[[[user_id]]]]"
|
||||
},
|
||||
{
|
||||
"_context_request_id": "req-[[[[UUID_0]]]]",
|
||||
"_context_quota_class": null,
|
||||
"event_type": "compute.instance.update",
|
||||
"_context_auth_token": "[[[[XUUID_0]]]]",
|
||||
"_context_user_id": "[[[[user_id]]]]",
|
||||
"payload": {
|
||||
"state_description": "",
|
||||
"availability_zone": null,
|
||||
"terminated_at": "",
|
||||
"ephemeral_gb": 0,
|
||||
"instance_type_id": 3,
|
||||
"bandwidth": {
|
||||
"public": {
|
||||
"bw_in": 3392224,
|
||||
"bw_out": 5041289
|
||||
},
|
||||
"private": {
|
||||
"bw_in": 2887704,
|
||||
"bw_out": 27353736
|
||||
}
|
||||
},
|
||||
"deleted_at": "",
|
||||
"reservation_id": "[[[[reservation_id]]]]",
|
||||
"instance_id": "[[[[UUID_1]]]]",
|
||||
"user_id": "[[[[user_id]]]]",
|
||||
"hostname": "[[[[hostname]]]]",
|
||||
"state": "active",
|
||||
"old_state": "active",
|
||||
"old_task_state": "image_uploading",
|
||||
"metadata": {},
|
||||
"node": "[[[[node]]]]",
|
||||
"ramdisk_id": "",
|
||||
"access_ip_v6": "[[[[V6_0]]]]",
|
||||
"disk_gb": 40,
|
||||
"access_ip_v4": "[[[[V4_0]]]]",
|
||||
"kernel_id": "",
|
||||
"host": "[[[[host]]]]",
|
||||
"display_name": "[[[[display_name]]]]",
|
||||
"image_ref_url": "http://[[[[V4_4]]]]:9292/images/[[[[UUID_2]]]]",
|
||||
"audit_period_beginning": "[[[[DT_12]]]]",
|
||||
"root_gb": 40,
|
||||
"tenant_id": "[[[[tenant_id]]]]",
|
||||
"created_at": "[[[[DT_1]]]]",
|
||||
"launched_at": "[[[[DT_2]]]]",
|
||||
"memory_mb": 1024,
|
||||
"instance_type": "1GB Standard Instance",
|
||||
"vcpus": 1,
|
||||
"image_meta": {
|
||||
"container_format": "ovf",
|
||||
"min_ram": "512",
|
||||
"os_distro": "centos",
|
||||
"org.openstack__1__os_distro": "org.centos",
|
||||
"image_type": "base",
|
||||
"disk_format": "vhd",
|
||||
"org.openstack__1__architecture": "x64",
|
||||
"min_disk": "40",
|
||||
"cache_in_nova": "True",
|
||||
"auto_disk_config": "True",
|
||||
"os_type": "linux",
|
||||
"org.openstack__1__os_version": "6.4"
|
||||
},
|
||||
"architecture": null,
|
||||
"new_task_state": null,
|
||||
"audit_period_ending": "[[[[DT_15]]]]",
|
||||
"os_type": "linux",
|
||||
"instance_flavor_id": "3"
|
||||
},
|
||||
"priority": "INFO",
|
||||
"_context_is_admin": false,
|
||||
"_context_user": "[[[[user_id]]]]",
|
||||
"publisher_id": "[[[[publisher_id]]]]",
|
||||
"message_id": "[[[[UUID_10]]]]",
|
||||
"_context_remote_address": "[[[[V4_2]]]]",
|
||||
"_context_roles": [
|
||||
"checkmate",
|
||||
"identity:user-admin",
|
||||
"object-store:default",
|
||||
"compute:default",
|
||||
"admin"
|
||||
],
|
||||
"timestamp": "[[[[DT_16]]]]",
|
||||
"_context_timestamp": "[[[[DT_5]]]]",
|
||||
"_unique_id": "[[[[XUUID_8]]]]",
|
||||
"_context_glance_api_servers": null,
|
||||
"_context_project_name": "[[[[tenant_id]]]]",
|
||||
"_context_read_deleted": "no",
|
||||
"_context_tenant": "[[[[tenant_id]]]]",
|
||||
"_context_instance_lock_checked": false,
|
||||
"_context_project_id": "[[[[tenant_id]]]]",
|
||||
"_context_user_name": "[[[[user_id]]]]"
|
||||
},
|
||||
{
|
||||
"_context_request_id": "req-[[[[UUID_0]]]]",
|
||||
"_context_quota_class": null,
|
||||
"event_type": "compute.instance.snapshot.end",
|
||||
"_context_auth_token": "[[[[XUUID_0]]]]",
|
||||
"_context_user_id": "[[[[user_id]]]]",
|
||||
"payload": {
|
||||
"state_description": "",
|
||||
"availability_zone": null,
|
||||
"terminated_at": "",
|
||||
"ephemeral_gb": 0,
|
||||
"instance_type_id": 3,
|
||||
"deleted_at": "",
|
||||
"reservation_id": "[[[[reservation_id]]]]",
|
||||
"instance_id": "[[[[UUID_1]]]]",
|
||||
"user_id": "[[[[user_id]]]]",
|
||||
"hostname": "[[[[hostname]]]]",
|
||||
"state": "active",
|
||||
"launched_at": "[[[[DT_2]]]]",
|
||||
"metadata": {},
|
||||
"node": "[[[[node]]]]",
|
||||
"ramdisk_id": "",
|
||||
"access_ip_v6": "[[[[V6_0]]]]",
|
||||
"disk_gb": 40,
|
||||
"access_ip_v4": "[[[[V4_0]]]]",
|
||||
"kernel_id": "",
|
||||
"host": "[[[[host]]]]",
|
||||
"display_name": "[[[[display_name]]]]",
|
||||
"image_ref_url": "http://[[[[V4_4]]]]:9292/images/[[[[UUID_2]]]]",
|
||||
"root_gb": 40,
|
||||
"tenant_id": "[[[[tenant_id]]]]",
|
||||
"created_at": "[[[[DT_1]]]]",
|
||||
"memory_mb": 1024,
|
||||
"instance_type": "1GB Standard Instance",
|
||||
"vcpus": 1,
|
||||
"image_meta": {
|
||||
"container_format": "ovf",
|
||||
"min_ram": "512",
|
||||
"os_distro": "centos",
|
||||
"org.openstack__1__os_distro": "org.centos",
|
||||
"image_type": "base",
|
||||
"disk_format": "vhd",
|
||||
"org.openstack__1__architecture": "x64",
|
||||
"min_disk": "40",
|
||||
"cache_in_nova": "True",
|
||||
"auto_disk_config": "True",
|
||||
"os_type": "linux",
|
||||
"org.openstack__1__os_version": "6.4"
|
||||
},
|
||||
"architecture": null,
|
||||
"os_type": "linux",
|
||||
"instance_flavor_id": "3"
|
||||
},
|
||||
"priority": "INFO",
|
||||
"_context_is_admin": true,
|
||||
"_context_user": "[[[[user_id]]]]",
|
||||
"publisher_id": "[[[[publisher_id]]]]",
|
||||
"message_id": "[[[[UUID_11]]]]",
|
||||
"_context_remote_address": "[[[[V4_2]]]]",
|
||||
"_context_roles": [
|
||||
"checkmate",
|
||||
"identity:user-admin",
|
||||
"object-store:default",
|
||||
"compute:default",
|
||||
"admin"
|
||||
],
|
||||
"timestamp": "[[[[DT_17]]]]",
|
||||
"_context_timestamp": "[[[[DT_5]]]]",
|
||||
"_unique_id": "[[[[XUUID_9]]]]",
|
||||
"_context_glance_api_servers": null,
|
||||
"_context_project_name": "[[[[tenant_id]]]]",
|
||||
"_context_read_deleted": "no",
|
||||
"_context_tenant": "[[[[tenant_id]]]]",
|
||||
"_context_instance_lock_checked": false,
|
||||
"_context_project_id": "[[[[tenant_id]]]]",
|
||||
"_context_user_name": "[[[[user_id]]]]"
|
||||
}
|
||||
]
|
File diff suppressed because it is too large
Load Diff
126
templates/eod_exists.json
Normal file
126
templates/eod_exists.json
Normal file
@ -0,0 +1,126 @@
|
||||
[
|
||||
{
|
||||
"xuuid": 1,
|
||||
"v4": 2,
|
||||
"time_map": {
|
||||
"[[[[DT_5]]]]": [
|
||||
-1,
|
||||
86399,
|
||||
894053
|
||||
],
|
||||
"[[[[DT_1]]]]": [
|
||||
-2,
|
||||
86399,
|
||||
866412
|
||||
],
|
||||
"[[[[DT_3]]]]": [
|
||||
-1,
|
||||
86399,
|
||||
866412
|
||||
],
|
||||
"[[[[DT_4]]]]": [
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"[[[[DT_0]]]]": [
|
||||
-75,
|
||||
45627,
|
||||
866412
|
||||
],
|
||||
"[[[[DT_2]]]]": [
|
||||
-75,
|
||||
45209,
|
||||
866412
|
||||
]
|
||||
},
|
||||
"uuid": 4,
|
||||
"v6": 1
|
||||
},
|
||||
{
|
||||
"_context_request_id": "req-[[[[UUID_0]]]]",
|
||||
"_context_quota_class": null,
|
||||
"event_type": "compute.instance.exists",
|
||||
"_context_auth_token": null,
|
||||
"_context_user_id": "[[[[user_id]]]]",
|
||||
"payload": {
|
||||
"state_description": "",
|
||||
"availability_zone": null,
|
||||
"terminated_at": "",
|
||||
"ephemeral_gb": 0,
|
||||
"instance_type_id": 7,
|
||||
"bandwidth": {
|
||||
"public": {
|
||||
"bw_in": 0,
|
||||
"bw_out": 0
|
||||
},
|
||||
"private": {
|
||||
"bw_in": 4803908381,
|
||||
"bw_out": 202702569
|
||||
}
|
||||
},
|
||||
"deleted_at": "",
|
||||
"reservation_id": "[[[[reservation_id]]]]",
|
||||
"instance_id": "[[[[UUID_1]]]]",
|
||||
"user_id": "[[[[user_id]]]]",
|
||||
"hostname": "[[[[hostname]]]]",
|
||||
"state": "active",
|
||||
"launched_at": "[[[[DT_0]]]]",
|
||||
"metadata": {},
|
||||
"node": "[[[[node]]]]",
|
||||
"ramdisk_id": "",
|
||||
"access_ip_v6": "[[[[V6_0]]]]",
|
||||
"disk_gb": 620,
|
||||
"access_ip_v4": "[[[[V4_0]]]]",
|
||||
"kernel_id": "",
|
||||
"host": "[[[[host]]]]",
|
||||
"display_name": "[[[[display_name]]]]",
|
||||
"image_ref_url": "http://[[[[V4_1]]]]:9292/images/[[[[UUID_2]]]]",
|
||||
"audit_period_beginning": "[[[[DT_1]]]]",
|
||||
"root_gb": 620,
|
||||
"tenant_id": "[[[[tenant_id]]]]",
|
||||
"created_at": "[[[[DT_2]]]]",
|
||||
"memory_mb": 15360,
|
||||
"instance_type": "15GB Standard Instance",
|
||||
"vcpus": 6,
|
||||
"image_meta": {
|
||||
"container_format": "ovf",
|
||||
"min_ram": "512",
|
||||
"base_image_ref": "[[[[UUID_2]]]]",
|
||||
"os_distro": "ubuntu",
|
||||
"org.openstack__1__os_distro": "com.ubuntu",
|
||||
"image_type": "base",
|
||||
"disk_format": "vhd",
|
||||
"org.openstack__1__architecture": "x64",
|
||||
"auto_disk_config": "True",
|
||||
"min_disk": "620",
|
||||
"cache_in_nova": "True",
|
||||
"os_type": "linux",
|
||||
"org.openstack__1__os_version": "12.04"
|
||||
},
|
||||
"architecture": "x64",
|
||||
"audit_period_ending": "[[[[DT_3]]]]",
|
||||
"os_type": "linux",
|
||||
"instance_flavor_id": "7"
|
||||
},
|
||||
"priority": "INFO",
|
||||
"_context_is_admin": true,
|
||||
"_context_user": "[[[[user_id]]]]",
|
||||
"publisher_id": "[[[[publisher_id]]]]",
|
||||
"message_id": "[[[[UUID_3]]]]",
|
||||
"_context_remote_address": null,
|
||||
"_context_roles": [
|
||||
"admin"
|
||||
],
|
||||
"timestamp": "[[[[DT_4]]]]",
|
||||
"_context_timestamp": "[[[[DT_5]]]]",
|
||||
"_unique_id": "[[[[XUUID_0]]]]",
|
||||
"_context_glance_api_servers": null,
|
||||
"_context_project_name": "[[[[tenant_id]]]]",
|
||||
"_context_read_deleted": "no",
|
||||
"_context_tenant": "[[[[tenant_id]]]]",
|
||||
"_context_instance_lock_checked": false,
|
||||
"_context_project_id": "[[[[tenant_id]]]]",
|
||||
"_context_user_name": "[[[[user_id]]]]"
|
||||
}
|
||||
]
|
Loading…
x
Reference in New Issue
Block a user