starting point of using templates ... need more templates
This commit is contained in:
parent
bad8b0bb30
commit
5d802c16b1
@ -18,17 +18,6 @@ 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
|
||||
|
||||
|
@ -20,11 +20,15 @@ Built from work done in https://github.com/SandyWalsh/twobillion
|
||||
|
||||
import datetime
|
||||
import heapq
|
||||
import json
|
||||
import operator
|
||||
import os
|
||||
import os.path
|
||||
import uuid as uuidlib
|
||||
import random
|
||||
import sys
|
||||
import time
|
||||
import uuid
|
||||
|
||||
|
||||
COMPUTE_EVENTS = [
|
||||
@ -76,7 +80,8 @@ API_NODES = ['api.server.%02d' % x for x in xrange(10)]
|
||||
|
||||
|
||||
class EventGenerator(object):
|
||||
def __init__(self, operations_per_minute=1000):
|
||||
def __init__(self, operations_per_minute=1000, exists_hours=1):
|
||||
self.exists_hours = exists_hours # num hours between .exists
|
||||
self.instances = {} # { uuid: compute_node }
|
||||
|
||||
# Many actions can be performed concurrently.
|
||||
@ -110,6 +115,122 @@ class EventGenerator(object):
|
||||
|
||||
self.last_exists = now # When were last .exists sent?
|
||||
|
||||
def move_to_next_tick(self, now):
|
||||
return now + datetime.timedelta(milliseconds=self.millisecond_per_tick)
|
||||
|
||||
|
||||
class TemplateEventGenerator(EventGenerator):
|
||||
def __init__(self, template_dir, operations_per_minute=1000,
|
||||
exists_hours=24):
|
||||
super(TemplateEventGenerator, self).__init__(operations_per_minute,
|
||||
exists_hours)
|
||||
|
||||
# Load all the templates ...
|
||||
template_filenames = [f for f in os.listdir(template_dir)
|
||||
if os.path.isfile(os.path.join(
|
||||
template_dir, f)) and
|
||||
f[-5:] == ".json"]
|
||||
|
||||
self.templates = []
|
||||
for filename in template_filenames:
|
||||
with open(os.path.join(template_dir, filename), "r") as f:
|
||||
print filename
|
||||
template = json.load(f)
|
||||
# Keep it as a raw string to make replacements easier ...
|
||||
raw = json.dumps(template[1:], sort_keys=True, indent=4)
|
||||
self.templates.append((filename, template[0], raw))
|
||||
|
||||
def generate(self, now):
|
||||
self._add_new_sequence(now)
|
||||
return [] # self._get_ready_events(now)
|
||||
|
||||
def _add_new_sequence(self, now):
|
||||
"""Add a new operation to the queue.
|
||||
This is the entire sequence of events going into
|
||||
the future. They will be interwoven with other
|
||||
future events and pumped out in proper (interleaving)
|
||||
order."""
|
||||
if now >= self.tick:
|
||||
context, sequence = self._get_sequence(now)
|
||||
for idx, when_event in enumerate(sequence):
|
||||
when, event = when_event
|
||||
print when, event['event_type']
|
||||
# (when, is_first_event, is_last_event)
|
||||
heapq.heappush(self.next_events,
|
||||
(when, idx==0, idx==len(sequence)-1))
|
||||
print "------------------------------"
|
||||
self.tick = self.move_to_next_tick(now)
|
||||
return now
|
||||
|
||||
def _get_sequence(self, now):
|
||||
"""Grab a template and make a sequence from it.
|
||||
"""
|
||||
sequence = []
|
||||
|
||||
filename, context_hints, template = random.choice(self.templates)
|
||||
print "Using", filename
|
||||
context = {}
|
||||
time_map = context_hints['time_map']
|
||||
for key, values in time_map.iteritems():
|
||||
context[key] = str(now + datetime.timedelta(days=values[0],
|
||||
seconds=values[1],
|
||||
milliseconds=values[2]))
|
||||
for num in range(context_hints['uuid']):
|
||||
context["[[[[UUID_%d]]]]" % num] = str(uuid.uuid4())
|
||||
|
||||
for num in range(context_hints['xuuid']):
|
||||
u = str(uuid.uuid4()).replace("-", "")
|
||||
context["[[[[XUUID_%d]]]]" % num] = u
|
||||
|
||||
for num in range(context_hints['v4']):
|
||||
nums = [127 + random.randrange(127) for x in range(4)]
|
||||
v4 = "%d.%d.%d.%d" % tuple(nums)
|
||||
context["[[[[V4_%d]]]]" % num] = v4
|
||||
|
||||
for num in range(context_hints['v6']):
|
||||
res = [hex(random.randint(0, 65535))[2:].zfill(4)
|
||||
for i in range(0, 8)]
|
||||
v6 = ":".join(res)
|
||||
context["[[[[V6_%d]]]]" % num] = v6
|
||||
|
||||
# The rest of the context ...
|
||||
context["[[[[tenant_id]]]]"] = str(100000 + random.randrange(899999))
|
||||
context["[[[[user_id]]]]"] = str(100000 + random.randrange(899999))
|
||||
context["[[[[display_name]]]]"] = "Instance_%d" % random.randrange(
|
||||
899999)
|
||||
context["[[[[host]]]]"] = "host-%d" % random.randrange(899999)
|
||||
context["[[[[hostname]]]]"] = "server-%d" % random.randrange(899999)
|
||||
context["[[[[node]]]]"] = "node-%d" % random.randrange(899999)
|
||||
context["[[[[reservation_id]]]]"] = "res-%d" % random.randrange(899999)
|
||||
context["[[[[image_name]]]]"] = "image-%d" % random.randrange(899999)
|
||||
context["[[[[device_name]]]]"] = "device-%d" % random.randrange(899999)
|
||||
context["[[[[publisher_id]]]]"] = "publisher-%d" % random.randrange(
|
||||
899999)
|
||||
|
||||
for key, value in context.iteritems():
|
||||
template = template.replace(key, value)
|
||||
|
||||
struct = json.loads(template)
|
||||
|
||||
instance_id = None
|
||||
for event in struct:
|
||||
inst_id = event['payload'].get('instance_id')
|
||||
if inst_id:
|
||||
if instance_id and instance_id != inst_id:
|
||||
print "changing instance id", instance_id, inst_id
|
||||
instance_id = inst_id
|
||||
sequence.append((event['timestamp'], event))
|
||||
|
||||
context['instance_id'] = instance_id
|
||||
return context, sorted(sequence)
|
||||
|
||||
|
||||
class TinyEventGenerator(EventGenerator):
|
||||
# Generates OpenStack-like events without event templates.
|
||||
# The event payloads are not complete and the event sequences
|
||||
# are mostly made up.
|
||||
# If you have a StackTach.v2 deployment, you can use the
|
||||
# template generator in ./bin to make your own templates.
|
||||
def generate(self, now):
|
||||
self._add_new_sequence(now)
|
||||
events = self._get_ready_events(now)
|
||||
@ -118,8 +239,6 @@ class EventGenerator(object):
|
||||
event['message_id'] = str(uuidlib.uuid4())
|
||||
return events
|
||||
|
||||
def move_to_next_tick(self, now):
|
||||
return now + datetime.timedelta(milliseconds=self.millisecond_per_tick)
|
||||
|
||||
def _add_new_sequence(self, now):
|
||||
"""Add a new operation to the queue.
|
||||
@ -170,16 +289,33 @@ class EventGenerator(object):
|
||||
#print "%s %40s U:%4s" % (' ' * 20, event['event_type'], uuid[-4:])
|
||||
ready.append(event)
|
||||
|
||||
# Send .exists every hour for all active instances.
|
||||
if (now - self.last_exists).seconds > 60 * 60:
|
||||
self.last_exists = now
|
||||
# Send .exists every N hours for all active instances.
|
||||
# Ensure the datetime of the .exists notification is HH:MM = X:00
|
||||
# so we have regular blocks. In the situation we were doing
|
||||
# End-of-Day .exists, we'd want the datetime to be 00:00
|
||||
# like Nova does by default.
|
||||
|
||||
for instance in self.instances_in_use:
|
||||
base = {'uuid': instance}
|
||||
events, now = self._event(now + datetime.timedelta(seconds = 1),
|
||||
base, "exists_node",
|
||||
"compute.instance.exists")
|
||||
ready.extend(events)
|
||||
if now.minute < self.last_exists.minute:
|
||||
# Minute rollover occured.
|
||||
if (now - self.last_exists).seconds > (self.exists_hours*3600):
|
||||
flattened = now.replace(minute=0, second=0, microsecond=0)
|
||||
if self.exists_hours > 23:
|
||||
flattened = now.replace(hour=0, minute=0, second=0,
|
||||
microsecond=0)
|
||||
|
||||
self.last_exists = now
|
||||
|
||||
for instance in self.instances_in_use:
|
||||
audit_period_start = flattened - datetime.timedelta(
|
||||
hours=self.exists_hours)
|
||||
audit_period_end = flattened
|
||||
base = {'uuid': instance,
|
||||
'audit_period_start': audit_period_start,
|
||||
'audit_period_end': audit_period_end}
|
||||
events, now = self._event(now,
|
||||
base, "exists_node",
|
||||
"compute.instance.exists")
|
||||
ready.extend(events)
|
||||
|
||||
return ready
|
||||
|
||||
@ -324,7 +460,7 @@ if __name__ == '__main__':
|
||||
# The lower the ops/minute, the longer it will
|
||||
# take to get N events. This is useful for getting
|
||||
# .exists generated (hourly).
|
||||
g = EventGenerator(1)
|
||||
g = TemplateEventGenerator("templates", 1)
|
||||
now = datetime.datetime.utcnow()
|
||||
start = now
|
||||
nevents = 0
|
||||
|
2643
templates/compute.instance.create.start_24.json
Normal file
2643
templates/compute.instance.create.start_24.json
Normal file
File diff suppressed because it is too large
Load Diff
864
templates/compute.instance.delete.start_8.json
Normal file
864
templates/compute.instance.delete.start_8.json
Normal file
@ -0,0 +1,864 @@
|
||||
[
|
||||
{
|
||||
"time_map": {
|
||||
"[[[[DT_0]]]]": [
|
||||
-1,
|
||||
24,
|
||||
585401
|
||||
],
|
||||
"[[[[DT_10]]]]": [
|
||||
0,
|
||||
24,
|
||||
713487
|
||||
],
|
||||
"[[[[DT_11]]]]": [
|
||||
0,
|
||||
24,
|
||||
585401
|
||||
],
|
||||
"[[[[DT_12]]]]": [
|
||||
0,
|
||||
24,
|
||||
877507
|
||||
],
|
||||
"[[[[DT_13]]]]": [
|
||||
0,
|
||||
25,
|
||||
85329
|
||||
],
|
||||
"[[[[DT_1]]]]": [
|
||||
-2,
|
||||
55726,
|
||||
585401
|
||||
],
|
||||
"[[[[DT_2]]]]": [
|
||||
-2,
|
||||
55873,
|
||||
585401
|
||||
],
|
||||
"[[[[DT_3]]]]": [
|
||||
-1,
|
||||
86399,
|
||||
585401
|
||||
],
|
||||
"[[[[DT_4]]]]": [
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"[[[[DT_5]]]]": [
|
||||
-1,
|
||||
86399,
|
||||
627812
|
||||
],
|
||||
"[[[[DT_6]]]]": [
|
||||
0,
|
||||
0,
|
||||
230646
|
||||
],
|
||||
"[[[[DT_7]]]]": [
|
||||
0,
|
||||
0,
|
||||
543713
|
||||
],
|
||||
"[[[[DT_8]]]]": [
|
||||
0,
|
||||
3,
|
||||
469343
|
||||
],
|
||||
"[[[[DT_9]]]]": [
|
||||
0,
|
||||
3,
|
||||
497192
|
||||
]
|
||||
},
|
||||
"uuid": 13,
|
||||
"v4": 5,
|
||||
"v6": 1,
|
||||
"xuuid": 9
|
||||
},
|
||||
{
|
||||
"_context_auth_token": "[[[[XUUID_0]]]]",
|
||||
"_context_glance_api_servers": null,
|
||||
"_context_instance_lock_checked": false,
|
||||
"_context_is_admin": false,
|
||||
"_context_project_id": "[[[[tenant_id]]]]",
|
||||
"_context_project_name": "[[[[tenant_id]]]]",
|
||||
"_context_quota_class": null,
|
||||
"_context_read_deleted": "no",
|
||||
"_context_remote_address": "[[[[V4_2]]]]",
|
||||
"_context_request_id": "req-[[[[UUID_0]]]]",
|
||||
"_context_roles": [
|
||||
"checkmate",
|
||||
"object-store:default",
|
||||
"compute:default",
|
||||
"identity:user-admin"
|
||||
],
|
||||
"_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.update",
|
||||
"message_id": "[[[[UUID_5]]]]",
|
||||
"payload": {
|
||||
"access_ip_v4": "[[[[V4_0]]]]",
|
||||
"access_ip_v6": "[[[[V6_0]]]]",
|
||||
"architecture": "x64",
|
||||
"audit_period_beginning": "[[[[DT_0]]]]",
|
||||
"audit_period_ending": "[[[[DT_3]]]]",
|
||||
"availability_zone": null,
|
||||
"bandwidth": {},
|
||||
"created_at": "[[[[DT_1]]]]",
|
||||
"deleted_at": "",
|
||||
"disk_gb": 20,
|
||||
"display_name": "[[[[display_name]]]]",
|
||||
"ephemeral_gb": 0,
|
||||
"host": "[[[[host]]]]",
|
||||
"hostname": "[[[[hostname]]]]",
|
||||
"image_meta": {
|
||||
"arch": "x86-64",
|
||||
"auto_disk_config": "True",
|
||||
"base_image_ref": "[[[[UUID_3]]]]",
|
||||
"container_format": "ovf",
|
||||
"disk_format": "vhd",
|
||||
"image_type": "snapshot",
|
||||
"instance_type_ephemeral_gb": "0",
|
||||
"instance_type_flavorid": "performance1-1",
|
||||
"instance_type_id": "2",
|
||||
"instance_type_memory_mb": "1024",
|
||||
"instance_type_name": "1 GB Performance",
|
||||
"instance_type_root_gb": "20",
|
||||
"instance_type_rxtx_factor": "80",
|
||||
"instance_type_swap": "0",
|
||||
"instance_type_vcpu_weight": "10",
|
||||
"instance_type_vcpus": "1",
|
||||
"instance_uuid": "[[[[UUID_4]]]]",
|
||||
"min_disk": "20",
|
||||
"min_ram": "512",
|
||||
"network_allocated": "True",
|
||||
"org.openstack__1__architecture": "x64",
|
||||
"org.openstack__1__os_distro": "org.ubuntu",
|
||||
"org.openstack__1__os_version": "12.04",
|
||||
"os_distro": "ubuntu",
|
||||
"os_type": "linux",
|
||||
"os_version": "12.04",
|
||||
"user_id": "[[[[user_id]]]]",
|
||||
"xenapi_image_compression_level": "1"
|
||||
},
|
||||
"image_ref_url": "http://[[[[V4_1]]]]:9292/images/[[[[UUID_2]]]]",
|
||||
"instance_flavor_id": "2",
|
||||
"instance_id": "[[[[UUID_1]]]]",
|
||||
"instance_type": "512MB Standard Instance",
|
||||
"instance_type_id": 2,
|
||||
"kernel_id": "",
|
||||
"launched_at": "[[[[DT_2]]]]",
|
||||
"memory_mb": 512,
|
||||
"metadata": {},
|
||||
"new_task_state": "deleting",
|
||||
"node": "[[[[node]]]]",
|
||||
"old_state": "active",
|
||||
"old_task_state": null,
|
||||
"os_type": "linux",
|
||||
"ramdisk_id": "",
|
||||
"reservation_id": "[[[[reservation_id]]]]",
|
||||
"root_gb": 20,
|
||||
"state": "active",
|
||||
"state_description": "deleting",
|
||||
"tenant_id": "[[[[tenant_id]]]]",
|
||||
"terminated_at": "",
|
||||
"user_id": "[[[[user_id]]]]",
|
||||
"vcpus": 1
|
||||
},
|
||||
"priority": "INFO",
|
||||
"publisher_id": "[[[[publisher_id]]]]",
|
||||
"timestamp": "[[[[DT_4]]]]"
|
||||
},
|
||||
{
|
||||
"_context_auth_token": "[[[[XUUID_0]]]]",
|
||||
"_context_glance_api_servers": null,
|
||||
"_context_instance_lock_checked": false,
|
||||
"_context_is_admin": false,
|
||||
"_context_project_id": "[[[[tenant_id]]]]",
|
||||
"_context_project_name": "[[[[tenant_id]]]]",
|
||||
"_context_quota_class": null,
|
||||
"_context_read_deleted": "no",
|
||||
"_context_remote_address": "[[[[V4_2]]]]",
|
||||
"_context_request_id": "req-[[[[UUID_0]]]]",
|
||||
"_context_roles": [
|
||||
"checkmate",
|
||||
"object-store:default",
|
||||
"compute:default",
|
||||
"identity:user-admin"
|
||||
],
|
||||
"_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_2]]]]",
|
||||
"event_type": "compute.instance.update",
|
||||
"message_id": "[[[[UUID_6]]]]",
|
||||
"payload": {
|
||||
"access_ip_v4": "[[[[V4_0]]]]",
|
||||
"access_ip_v6": "[[[[V6_0]]]]",
|
||||
"architecture": "x64",
|
||||
"audit_period_beginning": "[[[[DT_0]]]]",
|
||||
"audit_period_ending": "[[[[DT_3]]]]",
|
||||
"availability_zone": null,
|
||||
"bandwidth": {
|
||||
"private": {
|
||||
"bw_in": 0,
|
||||
"bw_out": 0
|
||||
},
|
||||
"public": {
|
||||
"bw_in": 11920421222,
|
||||
"bw_out": 11666232781
|
||||
}
|
||||
},
|
||||
"created_at": "[[[[DT_1]]]]",
|
||||
"deleted_at": "",
|
||||
"disk_gb": 20,
|
||||
"display_name": "[[[[display_name]]]]",
|
||||
"ephemeral_gb": 0,
|
||||
"host": "[[[[host]]]]",
|
||||
"hostname": "[[[[hostname]]]]",
|
||||
"image_meta": {
|
||||
"arch": "x86-64",
|
||||
"auto_disk_config": "True",
|
||||
"base_image_ref": "[[[[UUID_3]]]]",
|
||||
"container_format": "ovf",
|
||||
"disk_format": "vhd",
|
||||
"image_type": "snapshot",
|
||||
"instance_type_ephemeral_gb": "0",
|
||||
"instance_type_flavorid": "performance1-1",
|
||||
"instance_type_id": "2",
|
||||
"instance_type_memory_mb": "1024",
|
||||
"instance_type_name": "1 GB Performance",
|
||||
"instance_type_root_gb": "20",
|
||||
"instance_type_rxtx_factor": "80",
|
||||
"instance_type_swap": "0",
|
||||
"instance_type_vcpu_weight": "10",
|
||||
"instance_type_vcpus": "1",
|
||||
"instance_uuid": "[[[[UUID_4]]]]",
|
||||
"min_disk": "20",
|
||||
"min_ram": "512",
|
||||
"network_allocated": "True",
|
||||
"org.openstack__1__architecture": "x64",
|
||||
"org.openstack__1__os_distro": "org.ubuntu",
|
||||
"org.openstack__1__os_version": "12.04",
|
||||
"os_distro": "ubuntu",
|
||||
"os_type": "linux",
|
||||
"os_version": "12.04",
|
||||
"user_id": "[[[[user_id]]]]",
|
||||
"xenapi_image_compression_level": "1"
|
||||
},
|
||||
"image_ref_url": "http://[[[[V4_3]]]]:9292/images/[[[[UUID_2]]]]",
|
||||
"instance_flavor_id": "2",
|
||||
"instance_id": "[[[[UUID_1]]]]",
|
||||
"instance_type": "512MB Standard Instance",
|
||||
"instance_type_id": 2,
|
||||
"kernel_id": "",
|
||||
"launched_at": "[[[[DT_2]]]]",
|
||||
"memory_mb": 512,
|
||||
"metadata": {},
|
||||
"new_task_state": null,
|
||||
"node": "[[[[node]]]]",
|
||||
"old_state": null,
|
||||
"old_task_state": null,
|
||||
"os_type": "linux",
|
||||
"ramdisk_id": "",
|
||||
"reservation_id": "[[[[reservation_id]]]]",
|
||||
"root_gb": 20,
|
||||
"state": "active",
|
||||
"state_description": "",
|
||||
"tenant_id": "[[[[tenant_id]]]]",
|
||||
"terminated_at": "",
|
||||
"user_id": "[[[[user_id]]]]",
|
||||
"vcpus": 1
|
||||
},
|
||||
"priority": "INFO",
|
||||
"publisher_id": "[[[[publisher_id]]]]",
|
||||
"timestamp": "[[[[DT_6]]]]"
|
||||
},
|
||||
{
|
||||
"_context_auth_token": "[[[[XUUID_0]]]]",
|
||||
"_context_glance_api_servers": null,
|
||||
"_context_instance_lock_checked": false,
|
||||
"_context_is_admin": false,
|
||||
"_context_project_id": "[[[[tenant_id]]]]",
|
||||
"_context_project_name": "[[[[tenant_id]]]]",
|
||||
"_context_quota_class": null,
|
||||
"_context_read_deleted": "no",
|
||||
"_context_remote_address": "[[[[V4_2]]]]",
|
||||
"_context_request_id": "req-[[[[UUID_0]]]]",
|
||||
"_context_roles": [
|
||||
"checkmate",
|
||||
"object-store:default",
|
||||
"compute:default",
|
||||
"identity:user-admin",
|
||||
"admin"
|
||||
],
|
||||
"_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.update",
|
||||
"message_id": "[[[[UUID_7]]]]",
|
||||
"payload": {
|
||||
"access_ip_v4": "[[[[V4_0]]]]",
|
||||
"access_ip_v6": "[[[[V6_0]]]]",
|
||||
"architecture": "x64",
|
||||
"audit_period_beginning": "[[[[DT_0]]]]",
|
||||
"audit_period_ending": "[[[[DT_3]]]]",
|
||||
"availability_zone": null,
|
||||
"bandwidth": {
|
||||
"private": {
|
||||
"bw_in": 0,
|
||||
"bw_out": 0
|
||||
},
|
||||
"public": {
|
||||
"bw_in": 11920421222,
|
||||
"bw_out": 11666232781
|
||||
}
|
||||
},
|
||||
"created_at": "[[[[DT_1]]]]",
|
||||
"deleted_at": "",
|
||||
"disk_gb": 20,
|
||||
"display_name": "[[[[display_name]]]]",
|
||||
"ephemeral_gb": 0,
|
||||
"host": "[[[[host]]]]",
|
||||
"hostname": "[[[[hostname]]]]",
|
||||
"image_meta": {
|
||||
"arch": "x86-64",
|
||||
"auto_disk_config": "True",
|
||||
"base_image_ref": "[[[[UUID_3]]]]",
|
||||
"container_format": "ovf",
|
||||
"disk_format": "vhd",
|
||||
"image_type": "snapshot",
|
||||
"instance_type_ephemeral_gb": "0",
|
||||
"instance_type_flavorid": "performance1-1",
|
||||
"instance_type_id": "2",
|
||||
"instance_type_memory_mb": "1024",
|
||||
"instance_type_name": "1 GB Performance",
|
||||
"instance_type_root_gb": "20",
|
||||
"instance_type_rxtx_factor": "80",
|
||||
"instance_type_swap": "0",
|
||||
"instance_type_vcpu_weight": "10",
|
||||
"instance_type_vcpus": "1",
|
||||
"instance_uuid": "[[[[UUID_4]]]]",
|
||||
"min_disk": "20",
|
||||
"min_ram": "512",
|
||||
"network_allocated": "True",
|
||||
"org.openstack__1__architecture": "x64",
|
||||
"org.openstack__1__os_distro": "org.ubuntu",
|
||||
"org.openstack__1__os_version": "12.04",
|
||||
"os_distro": "ubuntu",
|
||||
"os_type": "linux",
|
||||
"os_version": "12.04",
|
||||
"user_id": "[[[[user_id]]]]",
|
||||
"xenapi_image_compression_level": "1"
|
||||
},
|
||||
"image_ref_url": "http://[[[[V4_3]]]]:9292/images/[[[[UUID_2]]]]",
|
||||
"instance_flavor_id": "2",
|
||||
"instance_id": "[[[[UUID_1]]]]",
|
||||
"instance_type": "512MB Standard Instance",
|
||||
"instance_type_id": 2,
|
||||
"kernel_id": "",
|
||||
"launched_at": "[[[[DT_2]]]]",
|
||||
"memory_mb": 512,
|
||||
"metadata": {},
|
||||
"new_task_state": "deleting",
|
||||
"node": "[[[[node]]]]",
|
||||
"old_state": "active",
|
||||
"old_task_state": null,
|
||||
"os_type": "linux",
|
||||
"ramdisk_id": "",
|
||||
"reservation_id": "[[[[reservation_id]]]]",
|
||||
"root_gb": 20,
|
||||
"state": "active",
|
||||
"state_description": "deleting",
|
||||
"tenant_id": "[[[[tenant_id]]]]",
|
||||
"terminated_at": "",
|
||||
"user_id": "[[[[user_id]]]]",
|
||||
"vcpus": 1
|
||||
},
|
||||
"priority": "INFO",
|
||||
"publisher_id": "[[[[publisher_id]]]]",
|
||||
"timestamp": "[[[[DT_7]]]]"
|
||||
},
|
||||
{
|
||||
"_context_auth_token": "[[[[XUUID_0]]]]",
|
||||
"_context_glance_api_servers": null,
|
||||
"_context_instance_lock_checked": false,
|
||||
"_context_is_admin": false,
|
||||
"_context_project_id": "[[[[tenant_id]]]]",
|
||||
"_context_project_name": "[[[[tenant_id]]]]",
|
||||
"_context_quota_class": null,
|
||||
"_context_read_deleted": "no",
|
||||
"_context_remote_address": "[[[[V4_2]]]]",
|
||||
"_context_request_id": "req-[[[[UUID_0]]]]",
|
||||
"_context_roles": [
|
||||
"checkmate",
|
||||
"object-store:default",
|
||||
"compute:default",
|
||||
"identity:user-admin",
|
||||
"admin"
|
||||
],
|
||||
"_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_4]]]]",
|
||||
"event_type": "compute.instance.delete.start",
|
||||
"message_id": "[[[[UUID_8]]]]",
|
||||
"payload": {
|
||||
"access_ip_v4": "[[[[V4_0]]]]",
|
||||
"access_ip_v6": "[[[[V6_0]]]]",
|
||||
"architecture": "x64",
|
||||
"availability_zone": null,
|
||||
"created_at": "[[[[DT_1]]]]",
|
||||
"deleted_at": "",
|
||||
"disk_gb": 20,
|
||||
"display_name": "[[[[display_name]]]]",
|
||||
"ephemeral_gb": 0,
|
||||
"host": "[[[[host]]]]",
|
||||
"hostname": "[[[[hostname]]]]",
|
||||
"image_meta": {
|
||||
"arch": "x86-64",
|
||||
"auto_disk_config": "True",
|
||||
"base_image_ref": "[[[[UUID_3]]]]",
|
||||
"container_format": "ovf",
|
||||
"disk_format": "vhd",
|
||||
"image_type": "snapshot",
|
||||
"instance_type_ephemeral_gb": "0",
|
||||
"instance_type_flavorid": "performance1-1",
|
||||
"instance_type_id": "2",
|
||||
"instance_type_memory_mb": "1024",
|
||||
"instance_type_name": "1 GB Performance",
|
||||
"instance_type_root_gb": "20",
|
||||
"instance_type_rxtx_factor": "80",
|
||||
"instance_type_swap": "0",
|
||||
"instance_type_vcpu_weight": "10",
|
||||
"instance_type_vcpus": "1",
|
||||
"instance_uuid": "[[[[UUID_4]]]]",
|
||||
"min_disk": "20",
|
||||
"min_ram": "512",
|
||||
"network_allocated": "True",
|
||||
"org.openstack__1__architecture": "x64",
|
||||
"org.openstack__1__os_distro": "org.ubuntu",
|
||||
"org.openstack__1__os_version": "12.04",
|
||||
"os_distro": "ubuntu",
|
||||
"os_type": "linux",
|
||||
"os_version": "12.04",
|
||||
"user_id": "[[[[user_id]]]]",
|
||||
"xenapi_image_compression_level": "1"
|
||||
},
|
||||
"image_ref_url": "http://[[[[V4_4]]]]:9292/images/[[[[UUID_2]]]]",
|
||||
"instance_flavor_id": "2",
|
||||
"instance_id": "[[[[UUID_1]]]]",
|
||||
"instance_type": "512MB Standard Instance",
|
||||
"instance_type_id": 2,
|
||||
"kernel_id": "",
|
||||
"launched_at": "[[[[DT_2]]]]",
|
||||
"memory_mb": 512,
|
||||
"metadata": {},
|
||||
"node": "[[[[node]]]]",
|
||||
"os_type": "linux",
|
||||
"ramdisk_id": "",
|
||||
"reservation_id": "[[[[reservation_id]]]]",
|
||||
"root_gb": 20,
|
||||
"state": "active",
|
||||
"state_description": "deleting",
|
||||
"tenant_id": "[[[[tenant_id]]]]",
|
||||
"terminated_at": "",
|
||||
"user_id": "[[[[user_id]]]]",
|
||||
"vcpus": 1
|
||||
},
|
||||
"priority": "INFO",
|
||||
"publisher_id": "[[[[publisher_id]]]]",
|
||||
"timestamp": "[[[[DT_8]]]]"
|
||||
},
|
||||
{
|
||||
"_context_auth_token": "[[[[XUUID_0]]]]",
|
||||
"_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": "[[[[V4_2]]]]",
|
||||
"_context_request_id": "req-[[[[UUID_0]]]]",
|
||||
"_context_roles": [
|
||||
"checkmate",
|
||||
"object-store:default",
|
||||
"compute:default",
|
||||
"identity:user-admin",
|
||||
"admin"
|
||||
],
|
||||
"_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_5]]]]",
|
||||
"event_type": "compute.instance.shutdown.start",
|
||||
"message_id": "[[[[UUID_9]]]]",
|
||||
"payload": {
|
||||
"access_ip_v4": "[[[[V4_0]]]]",
|
||||
"access_ip_v6": "[[[[V6_0]]]]",
|
||||
"architecture": "x64",
|
||||
"availability_zone": null,
|
||||
"created_at": "[[[[DT_1]]]]",
|
||||
"deleted_at": "",
|
||||
"disk_gb": 20,
|
||||
"display_name": "[[[[display_name]]]]",
|
||||
"ephemeral_gb": 0,
|
||||
"host": "[[[[host]]]]",
|
||||
"hostname": "[[[[hostname]]]]",
|
||||
"image_meta": {
|
||||
"arch": "x86-64",
|
||||
"auto_disk_config": "True",
|
||||
"base_image_ref": "[[[[UUID_3]]]]",
|
||||
"container_format": "ovf",
|
||||
"disk_format": "vhd",
|
||||
"image_type": "snapshot",
|
||||
"instance_type_ephemeral_gb": "0",
|
||||
"instance_type_flavorid": "performance1-1",
|
||||
"instance_type_id": "2",
|
||||
"instance_type_memory_mb": "1024",
|
||||
"instance_type_name": "1 GB Performance",
|
||||
"instance_type_root_gb": "20",
|
||||
"instance_type_rxtx_factor": "80",
|
||||
"instance_type_swap": "0",
|
||||
"instance_type_vcpu_weight": "10",
|
||||
"instance_type_vcpus": "1",
|
||||
"instance_uuid": "[[[[UUID_4]]]]",
|
||||
"min_disk": "20",
|
||||
"min_ram": "512",
|
||||
"network_allocated": "True",
|
||||
"org.openstack__1__architecture": "x64",
|
||||
"org.openstack__1__os_distro": "org.ubuntu",
|
||||
"org.openstack__1__os_version": "12.04",
|
||||
"os_distro": "ubuntu",
|
||||
"os_type": "linux",
|
||||
"os_version": "12.04",
|
||||
"user_id": "[[[[user_id]]]]",
|
||||
"xenapi_image_compression_level": "1"
|
||||
},
|
||||
"image_ref_url": "http://[[[[V4_4]]]]:9292/images/[[[[UUID_2]]]]",
|
||||
"instance_flavor_id": "2",
|
||||
"instance_id": "[[[[UUID_1]]]]",
|
||||
"instance_type": "512MB Standard Instance",
|
||||
"instance_type_id": 2,
|
||||
"kernel_id": "",
|
||||
"launched_at": "[[[[DT_2]]]]",
|
||||
"memory_mb": 512,
|
||||
"metadata": {},
|
||||
"node": "[[[[node]]]]",
|
||||
"os_type": "linux",
|
||||
"ramdisk_id": "",
|
||||
"reservation_id": "[[[[reservation_id]]]]",
|
||||
"root_gb": 20,
|
||||
"state": "active",
|
||||
"state_description": "deleting",
|
||||
"tenant_id": "[[[[tenant_id]]]]",
|
||||
"terminated_at": "",
|
||||
"user_id": "[[[[user_id]]]]",
|
||||
"vcpus": 1
|
||||
},
|
||||
"priority": "INFO",
|
||||
"publisher_id": "[[[[publisher_id]]]]",
|
||||
"timestamp": "[[[[DT_9]]]]"
|
||||
},
|
||||
{
|
||||
"_context_auth_token": "[[[[XUUID_0]]]]",
|
||||
"_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": "[[[[V4_2]]]]",
|
||||
"_context_request_id": "req-[[[[UUID_0]]]]",
|
||||
"_context_roles": [
|
||||
"checkmate",
|
||||
"object-store:default",
|
||||
"compute:default",
|
||||
"identity:user-admin",
|
||||
"admin"
|
||||
],
|
||||
"_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_6]]]]",
|
||||
"event_type": "compute.instance.shutdown.end",
|
||||
"message_id": "[[[[UUID_10]]]]",
|
||||
"payload": {
|
||||
"access_ip_v4": "[[[[V4_0]]]]",
|
||||
"access_ip_v6": "[[[[V6_0]]]]",
|
||||
"architecture": "x64",
|
||||
"availability_zone": null,
|
||||
"created_at": "[[[[DT_1]]]]",
|
||||
"deleted_at": "",
|
||||
"disk_gb": 20,
|
||||
"display_name": "[[[[display_name]]]]",
|
||||
"ephemeral_gb": 0,
|
||||
"host": "[[[[host]]]]",
|
||||
"hostname": "[[[[hostname]]]]",
|
||||
"image_meta": {
|
||||
"arch": "x86-64",
|
||||
"auto_disk_config": "True",
|
||||
"base_image_ref": "[[[[UUID_3]]]]",
|
||||
"container_format": "ovf",
|
||||
"disk_format": "vhd",
|
||||
"image_type": "snapshot",
|
||||
"instance_type_ephemeral_gb": "0",
|
||||
"instance_type_flavorid": "performance1-1",
|
||||
"instance_type_id": "2",
|
||||
"instance_type_memory_mb": "1024",
|
||||
"instance_type_name": "1 GB Performance",
|
||||
"instance_type_root_gb": "20",
|
||||
"instance_type_rxtx_factor": "80",
|
||||
"instance_type_swap": "0",
|
||||
"instance_type_vcpu_weight": "10",
|
||||
"instance_type_vcpus": "1",
|
||||
"instance_uuid": "[[[[UUID_4]]]]",
|
||||
"min_disk": "20",
|
||||
"min_ram": "512",
|
||||
"network_allocated": "True",
|
||||
"org.openstack__1__architecture": "x64",
|
||||
"org.openstack__1__os_distro": "org.ubuntu",
|
||||
"org.openstack__1__os_version": "12.04",
|
||||
"os_distro": "ubuntu",
|
||||
"os_type": "linux",
|
||||
"os_version": "12.04",
|
||||
"user_id": "[[[[user_id]]]]",
|
||||
"xenapi_image_compression_level": "1"
|
||||
},
|
||||
"image_ref_url": "http://[[[[V4_4]]]]:9292/images/[[[[UUID_2]]]]",
|
||||
"instance_flavor_id": "2",
|
||||
"instance_id": "[[[[UUID_1]]]]",
|
||||
"instance_type": "512MB Standard Instance",
|
||||
"instance_type_id": 2,
|
||||
"kernel_id": "",
|
||||
"launched_at": "[[[[DT_2]]]]",
|
||||
"memory_mb": 512,
|
||||
"metadata": {},
|
||||
"node": "[[[[node]]]]",
|
||||
"os_type": "linux",
|
||||
"ramdisk_id": "",
|
||||
"reservation_id": "[[[[reservation_id]]]]",
|
||||
"root_gb": 20,
|
||||
"state": "active",
|
||||
"state_description": "deleting",
|
||||
"tenant_id": "[[[[tenant_id]]]]",
|
||||
"terminated_at": "",
|
||||
"user_id": "[[[[user_id]]]]",
|
||||
"vcpus": 1
|
||||
},
|
||||
"priority": "INFO",
|
||||
"publisher_id": "[[[[publisher_id]]]]",
|
||||
"timestamp": "[[[[DT_10]]]]"
|
||||
},
|
||||
{
|
||||
"_context_auth_token": "[[[[XUUID_0]]]]",
|
||||
"_context_glance_api_servers": null,
|
||||
"_context_instance_lock_checked": false,
|
||||
"_context_is_admin": false,
|
||||
"_context_project_id": "[[[[tenant_id]]]]",
|
||||
"_context_project_name": "[[[[tenant_id]]]]",
|
||||
"_context_quota_class": null,
|
||||
"_context_read_deleted": "no",
|
||||
"_context_remote_address": "[[[[V4_2]]]]",
|
||||
"_context_request_id": "req-[[[[UUID_0]]]]",
|
||||
"_context_roles": [
|
||||
"checkmate",
|
||||
"object-store:default",
|
||||
"compute:default",
|
||||
"identity:user-admin",
|
||||
"admin"
|
||||
],
|
||||
"_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_7]]]]",
|
||||
"event_type": "compute.instance.update",
|
||||
"message_id": "[[[[UUID_11]]]]",
|
||||
"payload": {
|
||||
"access_ip_v4": "[[[[V4_0]]]]",
|
||||
"access_ip_v6": "[[[[V6_0]]]]",
|
||||
"architecture": "x64",
|
||||
"audit_period_beginning": "[[[[DT_11]]]]",
|
||||
"audit_period_ending": "[[[[DT_11]]]]",
|
||||
"availability_zone": null,
|
||||
"bandwidth": {},
|
||||
"created_at": "[[[[DT_1]]]]",
|
||||
"deleted_at": "",
|
||||
"disk_gb": 20,
|
||||
"display_name": "[[[[display_name]]]]",
|
||||
"ephemeral_gb": 0,
|
||||
"host": "[[[[host]]]]",
|
||||
"hostname": "[[[[hostname]]]]",
|
||||
"image_meta": {
|
||||
"arch": "x86-64",
|
||||
"auto_disk_config": "True",
|
||||
"base_image_ref": "[[[[UUID_3]]]]",
|
||||
"container_format": "ovf",
|
||||
"disk_format": "vhd",
|
||||
"image_type": "snapshot",
|
||||
"instance_type_ephemeral_gb": "0",
|
||||
"instance_type_flavorid": "performance1-1",
|
||||
"instance_type_id": "2",
|
||||
"instance_type_memory_mb": "1024",
|
||||
"instance_type_name": "1 GB Performance",
|
||||
"instance_type_root_gb": "20",
|
||||
"instance_type_rxtx_factor": "80",
|
||||
"instance_type_swap": "0",
|
||||
"instance_type_vcpu_weight": "10",
|
||||
"instance_type_vcpus": "1",
|
||||
"instance_uuid": "[[[[UUID_4]]]]",
|
||||
"min_disk": "20",
|
||||
"min_ram": "512",
|
||||
"network_allocated": "True",
|
||||
"org.openstack__1__architecture": "x64",
|
||||
"org.openstack__1__os_distro": "org.ubuntu",
|
||||
"org.openstack__1__os_version": "12.04",
|
||||
"os_distro": "ubuntu",
|
||||
"os_type": "linux",
|
||||
"os_version": "12.04",
|
||||
"user_id": "[[[[user_id]]]]",
|
||||
"xenapi_image_compression_level": "1"
|
||||
},
|
||||
"image_ref_url": "http://[[[[V4_4]]]]:9292/images/[[[[UUID_2]]]]",
|
||||
"instance_flavor_id": "2",
|
||||
"instance_id": "[[[[UUID_1]]]]",
|
||||
"instance_type": "512MB Standard Instance",
|
||||
"instance_type_id": 2,
|
||||
"kernel_id": "",
|
||||
"launched_at": "[[[[DT_2]]]]",
|
||||
"memory_mb": 512,
|
||||
"metadata": {},
|
||||
"new_task_state": null,
|
||||
"node": "[[[[node]]]]",
|
||||
"old_state": "active",
|
||||
"old_task_state": "deleting",
|
||||
"os_type": "linux",
|
||||
"ramdisk_id": "",
|
||||
"reservation_id": "[[[[reservation_id]]]]",
|
||||
"root_gb": 20,
|
||||
"state": "deleted",
|
||||
"state_description": "",
|
||||
"tenant_id": "[[[[tenant_id]]]]",
|
||||
"terminated_at": "[[[[DT_11]]]]",
|
||||
"user_id": "[[[[user_id]]]]",
|
||||
"vcpus": 1
|
||||
},
|
||||
"priority": "INFO",
|
||||
"publisher_id": "[[[[publisher_id]]]]",
|
||||
"timestamp": "[[[[DT_12]]]]"
|
||||
},
|
||||
{
|
||||
"_context_auth_token": "[[[[XUUID_0]]]]",
|
||||
"_context_glance_api_servers": null,
|
||||
"_context_instance_lock_checked": false,
|
||||
"_context_is_admin": false,
|
||||
"_context_project_id": "[[[[tenant_id]]]]",
|
||||
"_context_project_name": "[[[[tenant_id]]]]",
|
||||
"_context_quota_class": null,
|
||||
"_context_read_deleted": "no",
|
||||
"_context_remote_address": "[[[[V4_2]]]]",
|
||||
"_context_request_id": "req-[[[[UUID_0]]]]",
|
||||
"_context_roles": [
|
||||
"checkmate",
|
||||
"object-store:default",
|
||||
"compute:default",
|
||||
"identity:user-admin",
|
||||
"admin"
|
||||
],
|
||||
"_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_8]]]]",
|
||||
"event_type": "compute.instance.delete.end",
|
||||
"message_id": "[[[[UUID_12]]]]",
|
||||
"payload": {
|
||||
"access_ip_v4": "[[[[V4_0]]]]",
|
||||
"access_ip_v6": "[[[[V6_0]]]]",
|
||||
"architecture": "x64",
|
||||
"availability_zone": null,
|
||||
"created_at": "[[[[DT_1]]]]",
|
||||
"deleted_at": "[[[[DT_11]]]]",
|
||||
"disk_gb": 20,
|
||||
"display_name": "[[[[display_name]]]]",
|
||||
"ephemeral_gb": 0,
|
||||
"host": "[[[[host]]]]",
|
||||
"hostname": "[[[[hostname]]]]",
|
||||
"image_meta": {
|
||||
"arch": "x86-64",
|
||||
"auto_disk_config": "True",
|
||||
"base_image_ref": "[[[[UUID_3]]]]",
|
||||
"container_format": "ovf",
|
||||
"disk_format": "vhd",
|
||||
"image_type": "snapshot",
|
||||
"instance_type_ephemeral_gb": "0",
|
||||
"instance_type_flavorid": "performance1-1",
|
||||
"instance_type_id": "2",
|
||||
"instance_type_memory_mb": "1024",
|
||||
"instance_type_name": "1 GB Performance",
|
||||
"instance_type_root_gb": "20",
|
||||
"instance_type_rxtx_factor": "80",
|
||||
"instance_type_swap": "0",
|
||||
"instance_type_vcpu_weight": "10",
|
||||
"instance_type_vcpus": "1",
|
||||
"instance_uuid": "[[[[UUID_4]]]]",
|
||||
"min_disk": "20",
|
||||
"min_ram": "512",
|
||||
"network_allocated": "True",
|
||||
"org.openstack__1__architecture": "x64",
|
||||
"org.openstack__1__os_distro": "org.ubuntu",
|
||||
"org.openstack__1__os_version": "12.04",
|
||||
"os_distro": "ubuntu",
|
||||
"os_type": "linux",
|
||||
"os_version": "12.04",
|
||||
"user_id": "[[[[user_id]]]]",
|
||||
"xenapi_image_compression_level": "1"
|
||||
},
|
||||
"image_ref_url": "http://[[[[V4_4]]]]:9292/images/[[[[UUID_2]]]]",
|
||||
"instance_flavor_id": "2",
|
||||
"instance_id": "[[[[UUID_1]]]]",
|
||||
"instance_type": "512MB Standard Instance",
|
||||
"instance_type_id": 2,
|
||||
"kernel_id": "",
|
||||
"launched_at": "[[[[DT_2]]]]",
|
||||
"memory_mb": 512,
|
||||
"metadata": {},
|
||||
"node": "[[[[node]]]]",
|
||||
"os_type": "linux",
|
||||
"ramdisk_id": "",
|
||||
"reservation_id": "[[[[reservation_id]]]]",
|
||||
"root_gb": 20,
|
||||
"state": "deleted",
|
||||
"state_description": "",
|
||||
"tenant_id": "[[[[tenant_id]]]]",
|
||||
"terminated_at": "[[[[DT_11]]]]",
|
||||
"user_id": "[[[[user_id]]]]",
|
||||
"vcpus": 1
|
||||
},
|
||||
"priority": "INFO",
|
||||
"publisher_id": "[[[[publisher_id]]]]",
|
||||
"timestamp": "[[[[DT_13]]]]"
|
||||
}
|
||||
]
|
2717
templates/compute.instance.finish_resize.start_24.json
Normal file
2717
templates/compute.instance.finish_resize.start_24.json
Normal file
File diff suppressed because it is too large
Load Diff
370
templates/compute.instance.power_off.start_4.json
Normal file
370
templates/compute.instance.power_off.start_4.json
Normal file
@ -0,0 +1,370 @@
|
||||
[
|
||||
{
|
||||
"time_map": {
|
||||
"[[[[DT_0]]]]": [
|
||||
-1,
|
||||
19714,
|
||||
667761
|
||||
],
|
||||
"[[[[DT_1]]]]": [
|
||||
-321,
|
||||
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]]]]": [
|
||||
0,
|
||||
1,
|
||||
19109
|
||||
]
|
||||
},
|
||||
"uuid": 7,
|
||||
"v4": 2,
|
||||
"v6": 1,
|
||||
"xuuid": 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_0]]]]",
|
||||
"event_type": "compute.instance.update",
|
||||
"message_id": "[[[[UUID_3]]]]",
|
||||
"payload": {
|
||||
"access_ip_v4": "[[[[V4_0]]]]",
|
||||
"access_ip_v6": "[[[[V6_0]]]]",
|
||||
"architecture": null,
|
||||
"audit_period_beginning": "[[[[DT_0]]]]",
|
||||
"audit_period_ending": "[[[[DT_3]]]]",
|
||||
"availability_zone": null,
|
||||
"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",
|
||||
"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]]]]",
|
||||
"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]]]]",
|
||||
"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_6]]]]"
|
||||
},
|
||||
{
|
||||
"_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_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]]]]",
|
||||
"availability_zone": null,
|
||||
"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",
|
||||
"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]]]]",
|
||||
"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]]]]",
|
||||
"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_9]]]]"
|
||||
}
|
||||
]
|
598
templates/compute.instance.reboot.start_6.json
Normal file
598
templates/compute.instance.reboot.start_6.json
Normal file
@ -0,0 +1,598 @@
|
||||
[
|
||||
{
|
||||
"time_map": {
|
||||
"[[[[DT_0]]]]": [
|
||||
-1,
|
||||
81879,
|
||||
654695
|
||||
],
|
||||
"[[[[DT_10]]]]": [
|
||||
0,
|
||||
103,
|
||||
654695
|
||||
],
|
||||
"[[[[DT_11]]]]": [
|
||||
0,
|
||||
104,
|
||||
332227
|
||||
],
|
||||
"[[[[DT_12]]]]": [
|
||||
0,
|
||||
104,
|
||||
358269
|
||||
],
|
||||
"[[[[DT_1]]]]": [
|
||||
-53,
|
||||
31457,
|
||||
654695
|
||||
],
|
||||
"[[[[DT_2]]]]": [
|
||||
-53,
|
||||
31518,
|
||||
654695
|
||||
],
|
||||
"[[[[DT_3]]]]": [
|
||||
-1,
|
||||
86399,
|
||||
654695
|
||||
],
|
||||
"[[[[DT_4]]]]": [
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"[[[[DT_5]]]]": [
|
||||
-1,
|
||||
86399,
|
||||
584928
|
||||
],
|
||||
"[[[[DT_6]]]]": [
|
||||
0,
|
||||
0,
|
||||
654695
|
||||
],
|
||||
"[[[[DT_7]]]]": [
|
||||
0,
|
||||
0,
|
||||
838660
|
||||
],
|
||||
"[[[[DT_8]]]]": [
|
||||
0,
|
||||
1,
|
||||
257119
|
||||
],
|
||||
"[[[[DT_9]]]]": [
|
||||
0,
|
||||
1,
|
||||
667540
|
||||
]
|
||||
},
|
||||
"uuid": 9,
|
||||
"v4": 5,
|
||||
"v6": 1,
|
||||
"xuuid": 7
|
||||
},
|
||||
{
|
||||
"_context_auth_token": "[[[[XUUID_0]]]]",
|
||||
"_context_glance_api_servers": null,
|
||||
"_context_instance_lock_checked": false,
|
||||
"_context_is_admin": false,
|
||||
"_context_project_id": "[[[[tenant_id]]]]",
|
||||
"_context_project_name": "[[[[tenant_id]]]]",
|
||||
"_context_quota_class": null,
|
||||
"_context_read_deleted": "no",
|
||||
"_context_remote_address": "[[[[V4_2]]]]",
|
||||
"_context_request_id": "req-[[[[UUID_0]]]]",
|
||||
"_context_roles": [
|
||||
"checkmate",
|
||||
"object-store:default",
|
||||
"compute:default",
|
||||
"identity:user-admin"
|
||||
],
|
||||
"_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.update",
|
||||
"message_id": "[[[[UUID_3]]]]",
|
||||
"payload": {
|
||||
"access_ip_v4": "[[[[V4_0]]]]",
|
||||
"access_ip_v6": "[[[[V6_0]]]]",
|
||||
"architecture": "x64",
|
||||
"audit_period_beginning": "[[[[DT_0]]]]",
|
||||
"audit_period_ending": "[[[[DT_3]]]]",
|
||||
"availability_zone": null,
|
||||
"bandwidth": {},
|
||||
"created_at": "[[[[DT_1]]]]",
|
||||
"deleted_at": "",
|
||||
"disk_gb": 120,
|
||||
"display_name": "[[[[display_name]]]]",
|
||||
"ephemeral_gb": 80,
|
||||
"host": "[[[[host]]]]",
|
||||
"hostname": "[[[[hostname]]]]",
|
||||
"image_meta": {
|
||||
"auto_disk_config": "disabled",
|
||||
"base_image_ref": "[[[[UUID_2]]]]",
|
||||
"cache_in_nova": "True",
|
||||
"container_format": "ovf",
|
||||
"disk_format": "vhd",
|
||||
"image_type": "base",
|
||||
"min_disk": "40",
|
||||
"min_ram": "512",
|
||||
"org.openstack__1__architecture": "x64",
|
||||
"org.openstack__1__os_distro": "org.fedoraproject",
|
||||
"org.openstack__1__os_version": "20",
|
||||
"os_distro": "fedora",
|
||||
"os_type": "linux",
|
||||
"vm_mode": "hvm"
|
||||
},
|
||||
"image_ref_url": "http://[[[[V4_1]]]]:9292/images/[[[[UUID_2]]]]",
|
||||
"instance_flavor_id": "performance1-8",
|
||||
"instance_id": "[[[[UUID_1]]]]",
|
||||
"instance_type": "8 GB Performance",
|
||||
"instance_type_id": 12,
|
||||
"kernel_id": "",
|
||||
"launched_at": "[[[[DT_2]]]]",
|
||||
"memory_mb": 8192,
|
||||
"metadata": {},
|
||||
"new_task_state": "rebooting",
|
||||
"node": "[[[[node]]]]",
|
||||
"old_state": "active",
|
||||
"old_task_state": null,
|
||||
"os_type": "linux",
|
||||
"ramdisk_id": "",
|
||||
"reservation_id": "[[[[reservation_id]]]]",
|
||||
"root_gb": 40,
|
||||
"state": "active",
|
||||
"state_description": "rebooting",
|
||||
"tenant_id": "[[[[tenant_id]]]]",
|
||||
"terminated_at": "",
|
||||
"user_id": "[[[[user_id]]]]",
|
||||
"vcpus": 8
|
||||
},
|
||||
"priority": "INFO",
|
||||
"publisher_id": "[[[[publisher_id]]]]",
|
||||
"timestamp": "[[[[DT_4]]]]"
|
||||
},
|
||||
{
|
||||
"_context_auth_token": "[[[[XUUID_0]]]]",
|
||||
"_context_glance_api_servers": null,
|
||||
"_context_instance_lock_checked": false,
|
||||
"_context_is_admin": false,
|
||||
"_context_project_id": "[[[[tenant_id]]]]",
|
||||
"_context_project_name": "[[[[tenant_id]]]]",
|
||||
"_context_quota_class": null,
|
||||
"_context_read_deleted": "no",
|
||||
"_context_remote_address": "[[[[V4_2]]]]",
|
||||
"_context_request_id": "req-[[[[UUID_0]]]]",
|
||||
"_context_roles": [
|
||||
"checkmate",
|
||||
"object-store:default",
|
||||
"compute:default",
|
||||
"identity:user-admin"
|
||||
],
|
||||
"_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_2]]]]",
|
||||
"event_type": "compute.instance.update",
|
||||
"message_id": "[[[[UUID_4]]]]",
|
||||
"payload": {
|
||||
"access_ip_v4": "[[[[V4_0]]]]",
|
||||
"access_ip_v6": "[[[[V6_0]]]]",
|
||||
"architecture": "x64",
|
||||
"audit_period_beginning": "[[[[DT_0]]]]",
|
||||
"audit_period_ending": "[[[[DT_6]]]]",
|
||||
"availability_zone": null,
|
||||
"bandwidth": {
|
||||
"private": {
|
||||
"bw_in": 29028,
|
||||
"bw_out": 15580
|
||||
},
|
||||
"public": {
|
||||
"bw_in": 1142550,
|
||||
"bw_out": 4402404
|
||||
}
|
||||
},
|
||||
"created_at": "[[[[DT_1]]]]",
|
||||
"deleted_at": "",
|
||||
"disk_gb": 120,
|
||||
"display_name": "[[[[display_name]]]]",
|
||||
"ephemeral_gb": 80,
|
||||
"host": "[[[[host]]]]",
|
||||
"hostname": "[[[[hostname]]]]",
|
||||
"image_meta": {
|
||||
"auto_disk_config": "disabled",
|
||||
"base_image_ref": "[[[[UUID_2]]]]",
|
||||
"cache_in_nova": "True",
|
||||
"container_format": "ovf",
|
||||
"disk_format": "vhd",
|
||||
"image_type": "base",
|
||||
"min_disk": "40",
|
||||
"min_ram": "512",
|
||||
"org.openstack__1__architecture": "x64",
|
||||
"org.openstack__1__os_distro": "org.fedoraproject",
|
||||
"org.openstack__1__os_version": "20",
|
||||
"os_distro": "fedora",
|
||||
"os_type": "linux",
|
||||
"vm_mode": "hvm"
|
||||
},
|
||||
"image_ref_url": "http://[[[[V4_3]]]]:9292/images/[[[[UUID_2]]]]",
|
||||
"instance_flavor_id": "performance1-8",
|
||||
"instance_id": "[[[[UUID_1]]]]",
|
||||
"instance_type": "8 GB Performance",
|
||||
"instance_type_id": 12,
|
||||
"kernel_id": "",
|
||||
"launched_at": "[[[[DT_2]]]]",
|
||||
"memory_mb": 8192,
|
||||
"metadata": {},
|
||||
"new_task_state": "rebooting",
|
||||
"node": "[[[[node]]]]",
|
||||
"old_state": "active",
|
||||
"old_task_state": null,
|
||||
"os_type": "linux",
|
||||
"ramdisk_id": "",
|
||||
"reservation_id": "[[[[reservation_id]]]]",
|
||||
"root_gb": 40,
|
||||
"state": "active",
|
||||
"state_description": "rebooting",
|
||||
"tenant_id": "[[[[tenant_id]]]]",
|
||||
"terminated_at": "",
|
||||
"user_id": "[[[[user_id]]]]",
|
||||
"vcpus": 8
|
||||
},
|
||||
"priority": "INFO",
|
||||
"publisher_id": "[[[[publisher_id]]]]",
|
||||
"timestamp": "[[[[DT_7]]]]"
|
||||
},
|
||||
{
|
||||
"_context_auth_token": "[[[[XUUID_0]]]]",
|
||||
"_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": "[[[[V4_2]]]]",
|
||||
"_context_request_id": "req-[[[[UUID_0]]]]",
|
||||
"_context_roles": [
|
||||
"checkmate",
|
||||
"object-store:default",
|
||||
"compute:default",
|
||||
"identity:user-admin",
|
||||
"admin"
|
||||
],
|
||||
"_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.reboot.start",
|
||||
"message_id": "[[[[UUID_5]]]]",
|
||||
"payload": {
|
||||
"access_ip_v4": "[[[[V4_0]]]]",
|
||||
"access_ip_v6": "[[[[V6_0]]]]",
|
||||
"architecture": "x64",
|
||||
"availability_zone": null,
|
||||
"created_at": "[[[[DT_1]]]]",
|
||||
"deleted_at": "",
|
||||
"disk_gb": 120,
|
||||
"display_name": "[[[[display_name]]]]",
|
||||
"ephemeral_gb": 80,
|
||||
"host": "[[[[host]]]]",
|
||||
"hostname": "[[[[hostname]]]]",
|
||||
"image_meta": {
|
||||
"auto_disk_config": "disabled",
|
||||
"base_image_ref": "[[[[UUID_2]]]]",
|
||||
"cache_in_nova": "True",
|
||||
"container_format": "ovf",
|
||||
"disk_format": "vhd",
|
||||
"image_type": "base",
|
||||
"min_disk": "40",
|
||||
"min_ram": "512",
|
||||
"org.openstack__1__architecture": "x64",
|
||||
"org.openstack__1__os_distro": "org.fedoraproject",
|
||||
"org.openstack__1__os_version": "20",
|
||||
"os_distro": "fedora",
|
||||
"os_type": "linux",
|
||||
"vm_mode": "hvm"
|
||||
},
|
||||
"image_ref_url": "http://[[[[V4_4]]]]:9292/images/[[[[UUID_2]]]]",
|
||||
"instance_flavor_id": "performance1-8",
|
||||
"instance_id": "[[[[UUID_1]]]]",
|
||||
"instance_type": "8 GB Performance",
|
||||
"instance_type_id": 12,
|
||||
"kernel_id": "",
|
||||
"launched_at": "[[[[DT_2]]]]",
|
||||
"memory_mb": 8192,
|
||||
"metadata": {},
|
||||
"node": "[[[[node]]]]",
|
||||
"os_type": "linux",
|
||||
"ramdisk_id": "",
|
||||
"reservation_id": "[[[[reservation_id]]]]",
|
||||
"root_gb": 40,
|
||||
"state": "active",
|
||||
"state_description": "rebooting",
|
||||
"tenant_id": "[[[[tenant_id]]]]",
|
||||
"terminated_at": "",
|
||||
"user_id": "[[[[user_id]]]]",
|
||||
"vcpus": 8
|
||||
},
|
||||
"priority": "INFO",
|
||||
"publisher_id": "[[[[publisher_id]]]]",
|
||||
"timestamp": "[[[[DT_8]]]]"
|
||||
},
|
||||
{
|
||||
"_context_auth_token": "[[[[XUUID_0]]]]",
|
||||
"_context_glance_api_servers": null,
|
||||
"_context_instance_lock_checked": false,
|
||||
"_context_is_admin": false,
|
||||
"_context_project_id": "[[[[tenant_id]]]]",
|
||||
"_context_project_name": "[[[[tenant_id]]]]",
|
||||
"_context_quota_class": null,
|
||||
"_context_read_deleted": "no",
|
||||
"_context_remote_address": "[[[[V4_2]]]]",
|
||||
"_context_request_id": "req-[[[[UUID_0]]]]",
|
||||
"_context_roles": [
|
||||
"checkmate",
|
||||
"object-store:default",
|
||||
"compute:default",
|
||||
"identity:user-admin",
|
||||
"admin"
|
||||
],
|
||||
"_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_4]]]]",
|
||||
"event_type": "compute.instance.update",
|
||||
"message_id": "[[[[UUID_6]]]]",
|
||||
"payload": {
|
||||
"access_ip_v4": "[[[[V4_0]]]]",
|
||||
"access_ip_v6": "[[[[V6_0]]]]",
|
||||
"architecture": "x64",
|
||||
"audit_period_beginning": "[[[[DT_0]]]]",
|
||||
"audit_period_ending": "[[[[DT_6]]]]",
|
||||
"availability_zone": null,
|
||||
"bandwidth": {
|
||||
"private": {
|
||||
"bw_in": 29028,
|
||||
"bw_out": 15580
|
||||
},
|
||||
"public": {
|
||||
"bw_in": 1142550,
|
||||
"bw_out": 4402404
|
||||
}
|
||||
},
|
||||
"created_at": "[[[[DT_1]]]]",
|
||||
"deleted_at": "",
|
||||
"disk_gb": 120,
|
||||
"display_name": "[[[[display_name]]]]",
|
||||
"ephemeral_gb": 80,
|
||||
"host": "[[[[host]]]]",
|
||||
"hostname": "[[[[hostname]]]]",
|
||||
"image_meta": {
|
||||
"auto_disk_config": "disabled",
|
||||
"base_image_ref": "[[[[UUID_2]]]]",
|
||||
"cache_in_nova": "True",
|
||||
"container_format": "ovf",
|
||||
"disk_format": "vhd",
|
||||
"image_type": "base",
|
||||
"min_disk": "40",
|
||||
"min_ram": "512",
|
||||
"org.openstack__1__architecture": "x64",
|
||||
"org.openstack__1__os_distro": "org.fedoraproject",
|
||||
"org.openstack__1__os_version": "20",
|
||||
"os_distro": "fedora",
|
||||
"os_type": "linux",
|
||||
"vm_mode": "hvm"
|
||||
},
|
||||
"image_ref_url": "http://[[[[V4_4]]]]:9292/images/[[[[UUID_2]]]]",
|
||||
"instance_flavor_id": "performance1-8",
|
||||
"instance_id": "[[[[UUID_1]]]]",
|
||||
"instance_type": "8 GB Performance",
|
||||
"instance_type_id": 12,
|
||||
"kernel_id": "",
|
||||
"launched_at": "[[[[DT_2]]]]",
|
||||
"memory_mb": 8192,
|
||||
"metadata": {},
|
||||
"new_task_state": "rebooting",
|
||||
"node": "[[[[node]]]]",
|
||||
"old_state": null,
|
||||
"old_task_state": null,
|
||||
"os_type": "linux",
|
||||
"ramdisk_id": "",
|
||||
"reservation_id": "[[[[reservation_id]]]]",
|
||||
"root_gb": 40,
|
||||
"state": "active",
|
||||
"state_description": "rebooting",
|
||||
"tenant_id": "[[[[tenant_id]]]]",
|
||||
"terminated_at": "",
|
||||
"user_id": "[[[[user_id]]]]",
|
||||
"vcpus": 8
|
||||
},
|
||||
"priority": "INFO",
|
||||
"publisher_id": "[[[[publisher_id]]]]",
|
||||
"timestamp": "[[[[DT_9]]]]"
|
||||
},
|
||||
{
|
||||
"_context_auth_token": "[[[[XUUID_0]]]]",
|
||||
"_context_glance_api_servers": null,
|
||||
"_context_instance_lock_checked": false,
|
||||
"_context_is_admin": false,
|
||||
"_context_project_id": "[[[[tenant_id]]]]",
|
||||
"_context_project_name": "[[[[tenant_id]]]]",
|
||||
"_context_quota_class": null,
|
||||
"_context_read_deleted": "no",
|
||||
"_context_remote_address": "[[[[V4_2]]]]",
|
||||
"_context_request_id": "req-[[[[UUID_0]]]]",
|
||||
"_context_roles": [
|
||||
"checkmate",
|
||||
"object-store:default",
|
||||
"compute:default",
|
||||
"identity:user-admin",
|
||||
"admin"
|
||||
],
|
||||
"_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_5]]]]",
|
||||
"event_type": "compute.instance.update",
|
||||
"message_id": "[[[[UUID_7]]]]",
|
||||
"payload": {
|
||||
"access_ip_v4": "[[[[V4_0]]]]",
|
||||
"access_ip_v6": "[[[[V6_0]]]]",
|
||||
"architecture": "x64",
|
||||
"audit_period_beginning": "[[[[DT_0]]]]",
|
||||
"audit_period_ending": "[[[[DT_10]]]]",
|
||||
"availability_zone": null,
|
||||
"bandwidth": {
|
||||
"private": {
|
||||
"bw_in": 29028,
|
||||
"bw_out": 15580
|
||||
},
|
||||
"public": {
|
||||
"bw_in": 1142550,
|
||||
"bw_out": 4402404
|
||||
}
|
||||
},
|
||||
"created_at": "[[[[DT_1]]]]",
|
||||
"deleted_at": "",
|
||||
"disk_gb": 120,
|
||||
"display_name": "[[[[display_name]]]]",
|
||||
"ephemeral_gb": 80,
|
||||
"host": "[[[[host]]]]",
|
||||
"hostname": "[[[[hostname]]]]",
|
||||
"image_meta": {
|
||||
"auto_disk_config": "disabled",
|
||||
"base_image_ref": "[[[[UUID_2]]]]",
|
||||
"cache_in_nova": "True",
|
||||
"container_format": "ovf",
|
||||
"disk_format": "vhd",
|
||||
"image_type": "base",
|
||||
"min_disk": "40",
|
||||
"min_ram": "512",
|
||||
"org.openstack__1__architecture": "x64",
|
||||
"org.openstack__1__os_distro": "org.fedoraproject",
|
||||
"org.openstack__1__os_version": "20",
|
||||
"os_distro": "fedora",
|
||||
"os_type": "linux",
|
||||
"vm_mode": "hvm"
|
||||
},
|
||||
"image_ref_url": "http://[[[[V4_4]]]]:9292/images/[[[[UUID_2]]]]",
|
||||
"instance_flavor_id": "performance1-8",
|
||||
"instance_id": "[[[[UUID_1]]]]",
|
||||
"instance_type": "8 GB Performance",
|
||||
"instance_type_id": 12,
|
||||
"kernel_id": "",
|
||||
"launched_at": "[[[[DT_2]]]]",
|
||||
"memory_mb": 8192,
|
||||
"metadata": {},
|
||||
"new_task_state": null,
|
||||
"node": "[[[[node]]]]",
|
||||
"old_state": "active",
|
||||
"old_task_state": "rebooting",
|
||||
"os_type": "linux",
|
||||
"ramdisk_id": "",
|
||||
"reservation_id": "[[[[reservation_id]]]]",
|
||||
"root_gb": 40,
|
||||
"state": "active",
|
||||
"state_description": "",
|
||||
"tenant_id": "[[[[tenant_id]]]]",
|
||||
"terminated_at": "",
|
||||
"user_id": "[[[[user_id]]]]",
|
||||
"vcpus": 8
|
||||
},
|
||||
"priority": "INFO",
|
||||
"publisher_id": "[[[[publisher_id]]]]",
|
||||
"timestamp": "[[[[DT_11]]]]"
|
||||
},
|
||||
{
|
||||
"_context_auth_token": "[[[[XUUID_0]]]]",
|
||||
"_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": "[[[[V4_2]]]]",
|
||||
"_context_request_id": "req-[[[[UUID_0]]]]",
|
||||
"_context_roles": [
|
||||
"checkmate",
|
||||
"object-store:default",
|
||||
"compute:default",
|
||||
"identity:user-admin",
|
||||
"admin"
|
||||
],
|
||||
"_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_6]]]]",
|
||||
"event_type": "compute.instance.reboot.end",
|
||||
"message_id": "[[[[UUID_8]]]]",
|
||||
"payload": {
|
||||
"access_ip_v4": "[[[[V4_0]]]]",
|
||||
"access_ip_v6": "[[[[V6_0]]]]",
|
||||
"architecture": "x64",
|
||||
"availability_zone": null,
|
||||
"created_at": "[[[[DT_1]]]]",
|
||||
"deleted_at": "",
|
||||
"disk_gb": 120,
|
||||
"display_name": "[[[[display_name]]]]",
|
||||
"ephemeral_gb": 80,
|
||||
"host": "[[[[host]]]]",
|
||||
"hostname": "[[[[hostname]]]]",
|
||||
"image_meta": {
|
||||
"auto_disk_config": "disabled",
|
||||
"base_image_ref": "[[[[UUID_2]]]]",
|
||||
"cache_in_nova": "True",
|
||||
"container_format": "ovf",
|
||||
"disk_format": "vhd",
|
||||
"image_type": "base",
|
||||
"min_disk": "40",
|
||||
"min_ram": "512",
|
||||
"org.openstack__1__architecture": "x64",
|
||||
"org.openstack__1__os_distro": "org.fedoraproject",
|
||||
"org.openstack__1__os_version": "20",
|
||||
"os_distro": "fedora",
|
||||
"os_type": "linux",
|
||||
"vm_mode": "hvm"
|
||||
},
|
||||
"image_ref_url": "http://[[[[V4_4]]]]:9292/images/[[[[UUID_2]]]]",
|
||||
"instance_flavor_id": "performance1-8",
|
||||
"instance_id": "[[[[UUID_1]]]]",
|
||||
"instance_type": "8 GB Performance",
|
||||
"instance_type_id": 12,
|
||||
"kernel_id": "",
|
||||
"launched_at": "[[[[DT_2]]]]",
|
||||
"memory_mb": 8192,
|
||||
"metadata": {},
|
||||
"node": "[[[[node]]]]",
|
||||
"os_type": "linux",
|
||||
"ramdisk_id": "",
|
||||
"reservation_id": "[[[[reservation_id]]]]",
|
||||
"root_gb": 40,
|
||||
"state": "active",
|
||||
"state_description": "",
|
||||
"tenant_id": "[[[[tenant_id]]]]",
|
||||
"terminated_at": "",
|
||||
"user_id": "[[[[user_id]]]]",
|
||||
"vcpus": 8
|
||||
},
|
||||
"priority": "INFO",
|
||||
"publisher_id": "[[[[publisher_id]]]]",
|
||||
"timestamp": "[[[[DT_12]]]]"
|
||||
}
|
||||
]
|
2381
templates/compute.instance.rebuild.start_24.json
Normal file
2381
templates/compute.instance.rebuild.start_24.json
Normal file
File diff suppressed because it is too large
Load Diff
1912
templates/compute.instance.rescue.start_19.json
Normal file
1912
templates/compute.instance.rescue.start_19.json
Normal file
File diff suppressed because it is too large
Load Diff
1151
templates/compute.instance.resize.confirm.start_12.json
Normal file
1151
templates/compute.instance.resize.confirm.start_12.json
Normal file
File diff suppressed because it is too large
Load Diff
2628
templates/compute.instance.resize.prep.start_24.json
Normal file
2628
templates/compute.instance.resize.prep.start_24.json
Normal file
File diff suppressed because it is too large
Load Diff
7891
templates/compute.instance.shutdown.start_65.json
Normal file
7891
templates/compute.instance.shutdown.start_65.json
Normal file
File diff suppressed because it is too large
Load Diff
1189
templates/compute.instance.snapshot.start_8.json
Normal file
1189
templates/compute.instance.snapshot.start_8.json
Normal file
File diff suppressed because it is too large
Load Diff
632
templates/compute.instance.unrescue.start_6.json
Normal file
632
templates/compute.instance.unrescue.start_6.json
Normal file
@ -0,0 +1,632 @@
|
||||
[
|
||||
{
|
||||
"time_map": {
|
||||
"[[[[DT_0]]]]": [
|
||||
-1,
|
||||
35657,
|
||||
874640
|
||||
],
|
||||
"[[[[DT_10]]]]": [
|
||||
0,
|
||||
30,
|
||||
852552
|
||||
],
|
||||
"[[[[DT_11]]]]": [
|
||||
0,
|
||||
30,
|
||||
883107
|
||||
],
|
||||
"[[[[DT_1]]]]": [
|
||||
-211,
|
||||
72082,
|
||||
874640
|
||||
],
|
||||
"[[[[DT_2]]]]": [
|
||||
-1,
|
||||
86158,
|
||||
874640
|
||||
],
|
||||
"[[[[DT_3]]]]": [
|
||||
-1,
|
||||
86399,
|
||||
874640
|
||||
],
|
||||
"[[[[DT_4]]]]": [
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"[[[[DT_5]]]]": [
|
||||
-1,
|
||||
86399,
|
||||
842124
|
||||
],
|
||||
"[[[[DT_6]]]]": [
|
||||
0,
|
||||
0,
|
||||
167073
|
||||
],
|
||||
"[[[[DT_7]]]]": [
|
||||
0,
|
||||
0,
|
||||
217746
|
||||
],
|
||||
"[[[[DT_8]]]]": [
|
||||
0,
|
||||
0,
|
||||
747347
|
||||
],
|
||||
"[[[[DT_9]]]]": [
|
||||
0,
|
||||
29,
|
||||
874640
|
||||
]
|
||||
},
|
||||
"uuid": 9,
|
||||
"v4": 6,
|
||||
"v6": 1,
|
||||
"xuuid": 7
|
||||
},
|
||||
{
|
||||
"_context_auth_token": "[[[[XUUID_0]]]]",
|
||||
"_context_glance_api_servers": null,
|
||||
"_context_instance_lock_checked": false,
|
||||
"_context_is_admin": false,
|
||||
"_context_project_id": "[[[[tenant_id]]]]",
|
||||
"_context_project_name": "[[[[tenant_id]]]]",
|
||||
"_context_quota_class": null,
|
||||
"_context_read_deleted": "no",
|
||||
"_context_remote_address": "[[[[V4_2]]]]",
|
||||
"_context_request_id": "req-[[[[UUID_0]]]]",
|
||||
"_context_roles": [
|
||||
"checkmate",
|
||||
"object-store:default",
|
||||
"compute:default",
|
||||
"identity:user-admin"
|
||||
],
|
||||
"_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.update",
|
||||
"message_id": "[[[[UUID_3]]]]",
|
||||
"payload": {
|
||||
"access_ip_v4": "[[[[V4_0]]]]",
|
||||
"access_ip_v6": "[[[[V6_0]]]]",
|
||||
"architecture": "x64",
|
||||
"audit_period_beginning": "[[[[DT_0]]]]",
|
||||
"audit_period_ending": "[[[[DT_3]]]]",
|
||||
"availability_zone": null,
|
||||
"bandwidth": {},
|
||||
"created_at": "[[[[DT_1]]]]",
|
||||
"deleted_at": "",
|
||||
"disk_gb": 20,
|
||||
"display_name": "[[[[display_name]]]]",
|
||||
"ephemeral_gb": 0,
|
||||
"host": "[[[[host]]]]",
|
||||
"hostname": "[[[[hostname]]]]",
|
||||
"image_meta": {
|
||||
"auto_disk_config": "True",
|
||||
"cache_in_nova": "True",
|
||||
"container_format": "ovf",
|
||||
"disk_format": "vhd",
|
||||
"image_type": "base",
|
||||
"min_disk": "20",
|
||||
"min_ram": "512",
|
||||
"org.openstack__1__architecture": "x64",
|
||||
"org.openstack__1__os_distro": "org.centos",
|
||||
"org.openstack__1__os_version": "6.4",
|
||||
"os_distro": "centos",
|
||||
"os_type": "linux"
|
||||
},
|
||||
"image_ref_url": "http://[[[[V4_1]]]]:9292/images/[[[[UUID_2]]]]",
|
||||
"instance_flavor_id": "2",
|
||||
"instance_id": "[[[[UUID_1]]]]",
|
||||
"instance_type": "512MB Standard Instance",
|
||||
"instance_type_id": 2,
|
||||
"kernel_id": "",
|
||||
"launched_at": "[[[[DT_2]]]]",
|
||||
"memory_mb": 512,
|
||||
"metadata": {},
|
||||
"new_task_state": "unrescuing",
|
||||
"node": "[[[[node]]]]",
|
||||
"old_state": "rescued",
|
||||
"old_task_state": null,
|
||||
"os_type": "linux",
|
||||
"ramdisk_id": "",
|
||||
"reservation_id": "[[[[reservation_id]]]]",
|
||||
"root_gb": 20,
|
||||
"state": "rescued",
|
||||
"state_description": "unrescuing",
|
||||
"tenant_id": "[[[[tenant_id]]]]",
|
||||
"terminated_at": "",
|
||||
"user_id": "[[[[user_id]]]]",
|
||||
"vcpus": 1
|
||||
},
|
||||
"priority": "INFO",
|
||||
"publisher_id": "[[[[publisher_id]]]]",
|
||||
"timestamp": "[[[[DT_4]]]]"
|
||||
},
|
||||
{
|
||||
"_context_auth_token": "[[[[XUUID_0]]]]",
|
||||
"_context_glance_api_servers": null,
|
||||
"_context_instance_lock_checked": false,
|
||||
"_context_is_admin": false,
|
||||
"_context_project_id": "[[[[tenant_id]]]]",
|
||||
"_context_project_name": "[[[[tenant_id]]]]",
|
||||
"_context_quota_class": null,
|
||||
"_context_read_deleted": "no",
|
||||
"_context_remote_address": "[[[[V4_2]]]]",
|
||||
"_context_request_id": "req-[[[[UUID_0]]]]",
|
||||
"_context_roles": [
|
||||
"checkmate",
|
||||
"object-store:default",
|
||||
"compute:default",
|
||||
"identity:user-admin"
|
||||
],
|
||||
"_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_2]]]]",
|
||||
"event_type": "compute.instance.update",
|
||||
"message_id": "[[[[UUID_4]]]]",
|
||||
"payload": {
|
||||
"access_ip_v4": "[[[[V4_0]]]]",
|
||||
"access_ip_v6": "[[[[V6_0]]]]",
|
||||
"architecture": "x64",
|
||||
"audit_period_beginning": "[[[[DT_0]]]]",
|
||||
"audit_period_ending": "[[[[DT_3]]]]",
|
||||
"availability_zone": null,
|
||||
"bandwidth": {
|
||||
"private": {
|
||||
"bw_in": 180,
|
||||
"bw_out": 84
|
||||
},
|
||||
"public": {
|
||||
"bw_in": 14995926,
|
||||
"bw_out": 8758312
|
||||
}
|
||||
},
|
||||
"created_at": "[[[[DT_1]]]]",
|
||||
"deleted_at": "",
|
||||
"disk_gb": 20,
|
||||
"display_name": "[[[[display_name]]]]",
|
||||
"ephemeral_gb": 0,
|
||||
"host": "[[[[host]]]]",
|
||||
"hostname": "[[[[hostname]]]]",
|
||||
"image_meta": {
|
||||
"auto_disk_config": "True",
|
||||
"cache_in_nova": "True",
|
||||
"container_format": "ovf",
|
||||
"disk_format": "vhd",
|
||||
"image_type": "base",
|
||||
"min_disk": "20",
|
||||
"min_ram": "512",
|
||||
"org.openstack__1__architecture": "x64",
|
||||
"org.openstack__1__os_distro": "org.centos",
|
||||
"org.openstack__1__os_version": "6.4",
|
||||
"os_distro": "centos",
|
||||
"os_type": "linux"
|
||||
},
|
||||
"image_ref_url": "http://[[[[V4_3]]]]:9292/images/[[[[UUID_2]]]]",
|
||||
"instance_flavor_id": "2",
|
||||
"instance_id": "[[[[UUID_1]]]]",
|
||||
"instance_type": "512MB Standard Instance",
|
||||
"instance_type_id": 2,
|
||||
"kernel_id": "",
|
||||
"launched_at": "[[[[DT_2]]]]",
|
||||
"memory_mb": 512,
|
||||
"metadata": {},
|
||||
"new_task_state": null,
|
||||
"node": "[[[[node]]]]",
|
||||
"old_state": null,
|
||||
"old_task_state": null,
|
||||
"os_type": "linux",
|
||||
"ramdisk_id": "",
|
||||
"reservation_id": "[[[[reservation_id]]]]",
|
||||
"root_gb": 20,
|
||||
"state": "rescued",
|
||||
"state_description": "",
|
||||
"tenant_id": "[[[[tenant_id]]]]",
|
||||
"terminated_at": "",
|
||||
"user_id": "[[[[user_id]]]]",
|
||||
"vcpus": 1
|
||||
},
|
||||
"priority": "INFO",
|
||||
"publisher_id": "[[[[publisher_id]]]]",
|
||||
"timestamp": "[[[[DT_6]]]]"
|
||||
},
|
||||
{
|
||||
"_context_auth_token": "[[[[XUUID_0]]]]",
|
||||
"_context_glance_api_servers": null,
|
||||
"_context_instance_lock_checked": false,
|
||||
"_context_is_admin": false,
|
||||
"_context_project_id": "[[[[tenant_id]]]]",
|
||||
"_context_project_name": "[[[[tenant_id]]]]",
|
||||
"_context_quota_class": null,
|
||||
"_context_read_deleted": "no",
|
||||
"_context_remote_address": "[[[[V4_2]]]]",
|
||||
"_context_request_id": "req-[[[[UUID_0]]]]",
|
||||
"_context_roles": [
|
||||
"checkmate",
|
||||
"object-store:default",
|
||||
"compute:default",
|
||||
"identity:user-admin"
|
||||
],
|
||||
"_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.update",
|
||||
"message_id": "[[[[UUID_5]]]]",
|
||||
"payload": {
|
||||
"access_ip_v4": "[[[[V4_0]]]]",
|
||||
"access_ip_v6": "[[[[V6_0]]]]",
|
||||
"architecture": "x64",
|
||||
"audit_period_beginning": "[[[[DT_0]]]]",
|
||||
"audit_period_ending": "[[[[DT_3]]]]",
|
||||
"availability_zone": null,
|
||||
"bandwidth": {
|
||||
"private": {
|
||||
"bw_in": 180,
|
||||
"bw_out": 84
|
||||
},
|
||||
"public": {
|
||||
"bw_in": 14995926,
|
||||
"bw_out": 8758312
|
||||
}
|
||||
},
|
||||
"created_at": "[[[[DT_1]]]]",
|
||||
"deleted_at": "",
|
||||
"disk_gb": 20,
|
||||
"display_name": "[[[[display_name]]]]",
|
||||
"ephemeral_gb": 0,
|
||||
"host": "[[[[host]]]]",
|
||||
"hostname": "[[[[hostname]]]]",
|
||||
"image_meta": {
|
||||
"auto_disk_config": "True",
|
||||
"cache_in_nova": "True",
|
||||
"container_format": "ovf",
|
||||
"disk_format": "vhd",
|
||||
"image_type": "base",
|
||||
"min_disk": "20",
|
||||
"min_ram": "512",
|
||||
"org.openstack__1__architecture": "x64",
|
||||
"org.openstack__1__os_distro": "org.centos",
|
||||
"org.openstack__1__os_version": "6.4",
|
||||
"os_distro": "centos",
|
||||
"os_type": "linux"
|
||||
},
|
||||
"image_ref_url": "http://[[[[V4_3]]]]:9292/images/[[[[UUID_2]]]]",
|
||||
"instance_flavor_id": "2",
|
||||
"instance_id": "[[[[UUID_1]]]]",
|
||||
"instance_type": "512MB Standard Instance",
|
||||
"instance_type_id": 2,
|
||||
"kernel_id": "",
|
||||
"launched_at": "[[[[DT_2]]]]",
|
||||
"memory_mb": 512,
|
||||
"metadata": {},
|
||||
"new_task_state": "unrescuing",
|
||||
"node": "[[[[node]]]]",
|
||||
"old_state": "rescued",
|
||||
"old_task_state": null,
|
||||
"os_type": "linux",
|
||||
"ramdisk_id": "",
|
||||
"reservation_id": "[[[[reservation_id]]]]",
|
||||
"root_gb": 20,
|
||||
"state": "rescued",
|
||||
"state_description": "unrescuing",
|
||||
"tenant_id": "[[[[tenant_id]]]]",
|
||||
"terminated_at": "",
|
||||
"user_id": "[[[[user_id]]]]",
|
||||
"vcpus": 1
|
||||
},
|
||||
"priority": "INFO",
|
||||
"publisher_id": "[[[[publisher_id]]]]",
|
||||
"timestamp": "[[[[DT_7]]]]"
|
||||
},
|
||||
{
|
||||
"_context_auth_token": "[[[[XUUID_0]]]]",
|
||||
"_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": "[[[[V4_2]]]]",
|
||||
"_context_request_id": "req-[[[[UUID_0]]]]",
|
||||
"_context_roles": [
|
||||
"checkmate",
|
||||
"object-store:default",
|
||||
"compute:default",
|
||||
"identity:user-admin",
|
||||
"admin"
|
||||
],
|
||||
"_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_4]]]]",
|
||||
"event_type": "compute.instance.unrescue.start",
|
||||
"message_id": "[[[[UUID_6]]]]",
|
||||
"payload": {
|
||||
"access_ip_v4": "[[[[V4_0]]]]",
|
||||
"access_ip_v6": "[[[[V6_0]]]]",
|
||||
"architecture": "x64",
|
||||
"availability_zone": null,
|
||||
"created_at": "[[[[DT_1]]]]",
|
||||
"deleted_at": "",
|
||||
"disk_gb": 20,
|
||||
"display_name": "[[[[display_name]]]]",
|
||||
"ephemeral_gb": 0,
|
||||
"fixed_ips": [
|
||||
{
|
||||
"address": "[[[[V4_0]]]]",
|
||||
"floating_ips": [],
|
||||
"label": "public",
|
||||
"meta": {},
|
||||
"type": "fixed",
|
||||
"version": 4
|
||||
},
|
||||
{
|
||||
"address": "[[[[V6_0]]]]",
|
||||
"floating_ips": [],
|
||||
"label": "public",
|
||||
"meta": {},
|
||||
"type": "fixed",
|
||||
"version": 6
|
||||
},
|
||||
{
|
||||
"address": "[[[[V4_4]]]]",
|
||||
"floating_ips": [],
|
||||
"label": "private",
|
||||
"meta": {},
|
||||
"type": "fixed",
|
||||
"version": 4
|
||||
}
|
||||
],
|
||||
"host": "[[[[host]]]]",
|
||||
"hostname": "[[[[hostname]]]]",
|
||||
"image_meta": {
|
||||
"auto_disk_config": "True",
|
||||
"cache_in_nova": "True",
|
||||
"container_format": "ovf",
|
||||
"disk_format": "vhd",
|
||||
"image_type": "base",
|
||||
"min_disk": "20",
|
||||
"min_ram": "512",
|
||||
"org.openstack__1__architecture": "x64",
|
||||
"org.openstack__1__os_distro": "org.centos",
|
||||
"org.openstack__1__os_version": "6.4",
|
||||
"os_distro": "centos",
|
||||
"os_type": "linux"
|
||||
},
|
||||
"image_ref_url": "http://[[[[V4_5]]]]:9292/images/[[[[UUID_2]]]]",
|
||||
"instance_flavor_id": "2",
|
||||
"instance_id": "[[[[UUID_1]]]]",
|
||||
"instance_type": "512MB Standard Instance",
|
||||
"instance_type_id": 2,
|
||||
"kernel_id": "",
|
||||
"launched_at": "[[[[DT_2]]]]",
|
||||
"memory_mb": 512,
|
||||
"metadata": {},
|
||||
"node": "[[[[node]]]]",
|
||||
"os_type": "linux",
|
||||
"ramdisk_id": "",
|
||||
"reservation_id": "[[[[reservation_id]]]]",
|
||||
"root_gb": 20,
|
||||
"state": "rescued",
|
||||
"state_description": "",
|
||||
"tenant_id": "[[[[tenant_id]]]]",
|
||||
"terminated_at": "",
|
||||
"user_id": "[[[[user_id]]]]",
|
||||
"vcpus": 1
|
||||
},
|
||||
"priority": "INFO",
|
||||
"publisher_id": "[[[[publisher_id]]]]",
|
||||
"timestamp": "[[[[DT_8]]]]"
|
||||
},
|
||||
{
|
||||
"_context_auth_token": "[[[[XUUID_0]]]]",
|
||||
"_context_glance_api_servers": null,
|
||||
"_context_instance_lock_checked": false,
|
||||
"_context_is_admin": false,
|
||||
"_context_project_id": "[[[[tenant_id]]]]",
|
||||
"_context_project_name": "[[[[tenant_id]]]]",
|
||||
"_context_quota_class": null,
|
||||
"_context_read_deleted": "no",
|
||||
"_context_remote_address": "[[[[V4_2]]]]",
|
||||
"_context_request_id": "req-[[[[UUID_0]]]]",
|
||||
"_context_roles": [
|
||||
"checkmate",
|
||||
"object-store:default",
|
||||
"compute:default",
|
||||
"identity:user-admin",
|
||||
"admin"
|
||||
],
|
||||
"_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_5]]]]",
|
||||
"event_type": "compute.instance.update",
|
||||
"message_id": "[[[[UUID_7]]]]",
|
||||
"payload": {
|
||||
"access_ip_v4": "[[[[V4_0]]]]",
|
||||
"access_ip_v6": "[[[[V6_0]]]]",
|
||||
"architecture": "x64",
|
||||
"audit_period_beginning": "[[[[DT_0]]]]",
|
||||
"audit_period_ending": "[[[[DT_9]]]]",
|
||||
"availability_zone": null,
|
||||
"bandwidth": {
|
||||
"private": {
|
||||
"bw_in": 180,
|
||||
"bw_out": 84
|
||||
},
|
||||
"public": {
|
||||
"bw_in": 14995926,
|
||||
"bw_out": 8758312
|
||||
}
|
||||
},
|
||||
"created_at": "[[[[DT_1]]]]",
|
||||
"deleted_at": "",
|
||||
"disk_gb": 20,
|
||||
"display_name": "[[[[display_name]]]]",
|
||||
"ephemeral_gb": 0,
|
||||
"host": "[[[[host]]]]",
|
||||
"hostname": "[[[[hostname]]]]",
|
||||
"image_meta": {
|
||||
"auto_disk_config": "True",
|
||||
"cache_in_nova": "True",
|
||||
"container_format": "ovf",
|
||||
"disk_format": "vhd",
|
||||
"image_type": "base",
|
||||
"min_disk": "20",
|
||||
"min_ram": "512",
|
||||
"org.openstack__1__architecture": "x64",
|
||||
"org.openstack__1__os_distro": "org.centos",
|
||||
"org.openstack__1__os_version": "6.4",
|
||||
"os_distro": "centos",
|
||||
"os_type": "linux"
|
||||
},
|
||||
"image_ref_url": "http://[[[[V4_5]]]]:9292/images/[[[[UUID_2]]]]",
|
||||
"instance_flavor_id": "2",
|
||||
"instance_id": "[[[[UUID_1]]]]",
|
||||
"instance_type": "512MB Standard Instance",
|
||||
"instance_type_id": 2,
|
||||
"kernel_id": "",
|
||||
"launched_at": "[[[[DT_2]]]]",
|
||||
"memory_mb": 512,
|
||||
"metadata": {},
|
||||
"new_task_state": null,
|
||||
"node": "[[[[node]]]]",
|
||||
"old_state": "rescued",
|
||||
"old_task_state": "unrescuing",
|
||||
"os_type": "linux",
|
||||
"ramdisk_id": "",
|
||||
"reservation_id": "[[[[reservation_id]]]]",
|
||||
"root_gb": 20,
|
||||
"state": "active",
|
||||
"state_description": "",
|
||||
"tenant_id": "[[[[tenant_id]]]]",
|
||||
"terminated_at": "",
|
||||
"user_id": "[[[[user_id]]]]",
|
||||
"vcpus": 1
|
||||
},
|
||||
"priority": "INFO",
|
||||
"publisher_id": "[[[[publisher_id]]]]",
|
||||
"timestamp": "[[[[DT_10]]]]"
|
||||
},
|
||||
{
|
||||
"_context_auth_token": "[[[[XUUID_0]]]]",
|
||||
"_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": "[[[[V4_2]]]]",
|
||||
"_context_request_id": "req-[[[[UUID_0]]]]",
|
||||
"_context_roles": [
|
||||
"checkmate",
|
||||
"object-store:default",
|
||||
"compute:default",
|
||||
"identity:user-admin",
|
||||
"admin"
|
||||
],
|
||||
"_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_6]]]]",
|
||||
"event_type": "compute.instance.unrescue.end",
|
||||
"message_id": "[[[[UUID_8]]]]",
|
||||
"payload": {
|
||||
"access_ip_v4": "[[[[V4_0]]]]",
|
||||
"access_ip_v6": "[[[[V6_0]]]]",
|
||||
"architecture": "x64",
|
||||
"availability_zone": null,
|
||||
"created_at": "[[[[DT_1]]]]",
|
||||
"deleted_at": "",
|
||||
"disk_gb": 20,
|
||||
"display_name": "[[[[display_name]]]]",
|
||||
"ephemeral_gb": 0,
|
||||
"fixed_ips": [
|
||||
{
|
||||
"address": "[[[[V4_0]]]]",
|
||||
"floating_ips": [],
|
||||
"label": "public",
|
||||
"meta": {},
|
||||
"type": "fixed",
|
||||
"version": 4
|
||||
},
|
||||
{
|
||||
"address": "[[[[V6_0]]]]",
|
||||
"floating_ips": [],
|
||||
"label": "public",
|
||||
"meta": {},
|
||||
"type": "fixed",
|
||||
"version": 6
|
||||
},
|
||||
{
|
||||
"address": "[[[[V4_4]]]]",
|
||||
"floating_ips": [],
|
||||
"label": "private",
|
||||
"meta": {},
|
||||
"type": "fixed",
|
||||
"version": 4
|
||||
}
|
||||
],
|
||||
"host": "[[[[host]]]]",
|
||||
"hostname": "[[[[hostname]]]]",
|
||||
"image_meta": {
|
||||
"auto_disk_config": "True",
|
||||
"cache_in_nova": "True",
|
||||
"container_format": "ovf",
|
||||
"disk_format": "vhd",
|
||||
"image_type": "base",
|
||||
"min_disk": "20",
|
||||
"min_ram": "512",
|
||||
"org.openstack__1__architecture": "x64",
|
||||
"org.openstack__1__os_distro": "org.centos",
|
||||
"org.openstack__1__os_version": "6.4",
|
||||
"os_distro": "centos",
|
||||
"os_type": "linux"
|
||||
},
|
||||
"image_ref_url": "http://[[[[V4_5]]]]:9292/images/[[[[UUID_2]]]]",
|
||||
"instance_flavor_id": "2",
|
||||
"instance_id": "[[[[UUID_1]]]]",
|
||||
"instance_type": "512MB Standard Instance",
|
||||
"instance_type_id": 2,
|
||||
"kernel_id": "",
|
||||
"launched_at": "[[[[DT_2]]]]",
|
||||
"memory_mb": 512,
|
||||
"metadata": {},
|
||||
"node": "[[[[node]]]]",
|
||||
"os_type": "linux",
|
||||
"ramdisk_id": "",
|
||||
"reservation_id": "[[[[reservation_id]]]]",
|
||||
"root_gb": 20,
|
||||
"state": "active",
|
||||
"state_description": "",
|
||||
"tenant_id": "[[[[tenant_id]]]]",
|
||||
"terminated_at": "",
|
||||
"user_id": "[[[[user_id]]]]",
|
||||
"vcpus": 1
|
||||
},
|
||||
"priority": "INFO",
|
||||
"publisher_id": "[[[[publisher_id]]]]",
|
||||
"timestamp": "[[[[DT_11]]]]"
|
||||
}
|
||||
]
|
Loading…
x
Reference in New Issue
Block a user